如何在iOS设备上触发Excel文档的ASP.NET(C#)下载。所有其他设备现在只下载导出。但iOS不断给出以下回应:
现在我使用以下代码:
[HttpGet]
public ActionResult ExportList(string ds)
{
//Generating the Excel file
...
//return the file
var fileName = Config.GetFileName("xlsx");
return File(tempFile, MimeMapping.GetMimeMapping(fileName), fileName);
}