在我的c#.NET MVC应用程序中,您可以下载一个excel文件(使用Nuget EPPlus)。要将文件发送给用户,我按照以下方式设置内容类型:
System.Web.HttpContext.Current.Response.ContentType = "application/vnd.xls";
有什么区别:
System.Web.HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";
我应该使用哪一个?