无法在iOS

时间:2016-02-29 09:42:55

标签: c# ios excel web

如何在iOS设备上触发Excel文档的ASP.NET(C#)下载。所有其他设备现在只下载导出。但iOS不断给出以下回应:

Screenshot of 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);
    }

0 个答案:

没有答案