asp.net-mvc – 导出Excel文件以查看(MVC)

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 导出Excel文件以查看(MVC)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我必须将数据导出为Excel,实际上我已实现,但我怀疑是什么时候
使用
return new FileContentResult(fileContents,"application/vnd.ms-excel");

VS

return File(fileContents,"application/vnd.ms-excel");

以及如何在每种方法中设置可下载的文件名?

例1:

public ActionResult ExcelExport()
{
   byte[] fileContents = Encoding.UTF8.GetBytes(data);
   return new FileContentResult(fileContents,"application/vnd.ms-excel");
}

例如:2

public ActionResult ExcelExport()
{
   byte[] fileContents = Encoding.UTF8.GetBytes(data);
   return File(fileContents,"application/vnd.ms-excel");
}

解决方法

你可以阅读FileContentResult& FileResult: What’s the difference between the four File Results in ASP.NET MVC

您可以像这样指定文件

return new FileContentResult(fileContents,"application/vnd.ms-excel") { FileDownloadName = "name.xls" };

// or

// note that this call will return a FileContentResult object
return new File(fileContents,"application/vnd.ms-excel","name.xls");
原文链接:https://www.f2er.com/aspnet/245372.html

猜你在找的asp.Net相关文章