To import a CSV catalog file
1.In Catalogs, click Catalog Editor.
2.In the Catalogs screen, click  on the toolbar, and then select Import CSV from the drop-down list.
3.In the Import CSV Catalog dialog box, do the following: Use this To do this 
File name Type the complete path and file name for the catalog you want to import or, if the file is in the CommerceCatalogs share on your server, type only the name of the file.  For example, type SportsCatalog.csv if this file is in the CommerceCatalogs share on your server. If the file is in any other folder, you must type the full file name and path to the catalog you want to import, for example, type C:\CatalogsforBusiness\SportsCatalogs.csv.  
Catalog name Type a name for the imported catalog. This name will also be used for the product definition created during the import process. 
Product identifier Type the name of the identifier column. 
Price column Type the name of the price column. 
Delete any existing data in this catalog If you are importing a catalog that already exists in your Commerce Server database, select this check box to delete the catalog data from the existing catalog before importing the new version.  
4.Click OK.

解决方案 »

  1.   

    加入双引号就行了:
    string str="\""+"111,000,000"+"\"";
    csv里的内容如:"111,000,000",1,2
    ....
      

  2.   

    我知道标签 就是空格想加多少都行的,这个能用吗
      

  3.   

    to
    szwebnet(动力)
    如果是VB.NET语句呢.
    chr(34)+"12,121"+chr(34) 结果是不行的.
      

  4.   

    在SQL语句取值时可以试试,你是数据绑定的吗?
      

  5.   

    csv其实是个文本文件,你如果想得到你要的,你必须做成string,上面有人说了,加双引号
    例如:""111,000,000""
    写的时候用:""""+format(number,"#,###").tostring()+""""
      

  6.   

    只要在每个单元格里前面加上一个单引号就可以解决了如'8888888888888888
    和8888888888888888你看一下,在EXCEL里会有什么样的显示方式