When I am click on export to xml for customer I am getting following fields only
First Name, Last name,Email,Created On.
How to get more?
Please help.
Thanks.
When I am click on export to xml for customer I am getting following fields only
First Name, Last name,Email,Created On.
How to get more?
Please help.
Thanks.
You would have to modify the admin/cst_export.aspx.cs(.aspx.vb) file to write additional elements out. The datareader already has all information from the customer table available, so you would just have to add a new line for each element that you wanted returned. For example, if you wanted to pull the customer level ID you could useAlternatively, you could use WSI to retrieve the customer information, and if you wanted use an xmlpackage to format the data so that only the nodes you wanted were present. To pull customers using WSI you would useCode:writer.WriteElementString("CustomerLevelID", DB.RSFieldInt(rs, "CustomerLevelID"));Code:<AspDotNetStorefrontImport> <GetCustomer GetAll="true"/> </AspDotNetStorefrontImport>
<a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>
Dostind you can contact Jan at jsimacek@compunix.us if you would like help with any modifications.
Jan Simacek - Compunix, LLC
AspDotNetStorefront trusted Devnet Partner and Reseller since 2005
AspDotNetStorefront Mods and Add-Ons at http://www.ecommercecartmods.com/
- Searching, Filtering and Sorting (like cSearch, Dealer Locator, Price Ranges, Blog)
- Reports (like Cart Abandonment and Net Sales)
- Customer Experience (like Question/Answers)
- Site and Data Management (like Entity Product Mapper, Bulk Updaters, Make/Model/Year filters)