我正在尝试使用以下代码,以允许用户下载位于本地服务器上的Excel:
FileInfo dest_file= new FileInfo(filename);
Response.ClearContent();
Response.ContentType = "Excel/xls";
Response.AddHeader("Content-Disposition", string.Format("attachment; filename = {0}", filename));
Response.AddHeader("Content-Length", dest_file.Length.toString());
Response.TransmitFile(filename);
Response.End();
但是,发布解决方案后,下载文件将导致网络故障。知道我该如何解决吗?
请注意,尝试通过目录浏览访问文件时,文件下载成功。
答案 0 :(得分:0)
您似乎使用了无效的内容类型
对于 xlsx ,请使用此
Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
用于 xls
Response.ContentType = "application/vnd.ms-excel"