Excel 导出不适用于 Chrome 浏览器
Excel export does not work only on Chrome browser
客户端:Chrome 版本 41.0.2272.89 m
内容类型:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
Excel 导出一直有效到上次 Chrome 更新。它在 Firefox 和 IE 上运行良好。当我点击导出时,会下载一个没有扩展名的文件。如果我手动将此文件的扩展名更改为 .xlsx,则它会在 excel.
中打开
目前,为文件名添加“.xlsx”扩展名很有帮助。如果有更好的解决方案,请发表评论。谢谢。
public virtual ActionResult Download(string fName) {
var fileStream = Session[fName] as MemoryStream;
Session[fName] = null;
return File(fileStream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "ExcelExport.xlsx");
}
客户端:Chrome 版本 41.0.2272.89 m
内容类型:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
Excel 导出一直有效到上次 Chrome 更新。它在 Firefox 和 IE 上运行良好。当我点击导出时,会下载一个没有扩展名的文件。如果我手动将此文件的扩展名更改为 .xlsx,则它会在 excel.
中打开目前,为文件名添加“.xlsx”扩展名很有帮助。如果有更好的解决方案,请发表评论。谢谢。
public virtual ActionResult Download(string fName) {
var fileStream = Session[fName] as MemoryStream;
Session[fName] = null;
return File(fileStream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "ExcelExport.xlsx");
}