GridWeb 的 LoadOptions

使用其他编码加载

对于 CSV 文件,它实际上是基于文本的文件,没有在 xlsx 格式文件中描述的特定编码。

因此,用户可以在加载文件之前设置特定的字符编码。

这里有一个示例代码用于加载中文:

    GridTxtLoadOptions topt = new GridTxtLoadOptions();
    topt.Encoding = (Encoding.GetEncoding("GB2312"));
    GridWeb1.LoadOptions = topt;
    String filePath = Server.MapPath("~/workbook/chinesefile.csv");
    GridWeb1.ImportExcelFile(filePath);