C# Web 下载excel文件后直接导入下载的文件报错的问题
2021-01-18 12:14
标签:缓存 binary ade osi 问题 导入 clear app style 下载代码如下: System.Web.HttpContext.Current.Response.Clear(); 上面标红的代码为出错的关键所在,应改为: System.Web.HttpContext.Current.Response.ContentType = "application/ms-excel"; C# Web 下载excel文件后直接导入下载的文件报错的问题 标签:缓存 binary ade osi 问题 导入 clear app style 原文地址:https://www.cnblogs.com/chensong0524/p/12176110.html
System.Web.HttpContext.Current.Response.ClearHeaders();
System.Web.HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
System.Web.HttpContext.Current.Response.ContentType = "application/vnd.ms-excel.sheet.binary.macroEnabled.12";
System.Web.HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + outputFileName);
System.Web.HttpContext.Current.Response.BinaryWrite(oByte);
//清除缓存
System.Web.HttpContext.Current.Response.Flush();
System.Web.HttpContext.Current.Response.End();
上一篇:【日积月累】DOM window
文章标题:C# Web 下载excel文件后直接导入下载的文件报错的问题
文章链接:http://soscw.com/index.php/essay/43667.html