我正在使用asp.net应用程序中的EPPlus将列表导出到Excel。
结果,某些字符串具有字符串字符(例如,梅尔金斯,必须是梅尔金斯)
我该如何解决?我在做什么错了?
我的下载代码如下:
Response.Clear();
Response.Buffer = true;
Response.ClearContent();
Response.ClearHeaders();
Response.AddHeader("content-disposition", mode + "; filename=" +
fileDown.Name);
Response.AddHeader("content-length", fileDown.Length.ToString());
Response.ContentEncoding = System.Text.UTF8Encoding.UTF8;
Response.ContentType = "application/vnd.ms-excel; charset=utf-8";
FuncionesUtiles.ReturnContentType(fileDown.Extension.ToLower());
if (fileDown.Exists)
{
Response.TransmitFile(fileDown.FullName);
Response.Flush();
}
结果,某些字符串具有字符串字符(例如,梅尔金斯,必须是梅尔金斯)