下载文件时如何设置文件名?

时间:2014-05-18 08:55:54

标签: c# excel asp.net-mvc-4 azure

我正在研究MVC 4.我使用以下简单代码动态生成Excel文件。我的托管是在Azure上。

我创建了一个Root路径,然后尝试保存该Excel文件。

问题是当我的ActionResult方法响应返回时,它提供默认弹出窗口来打开文件,但文件名是GUID而不是我提供的文件名。

Excel文件生成代码:

Microsoft.Office.Interop.Excel.Application xlApp =         新的Microsoft.Office.Interop.Excel.Application();

// ...
//Save
        LocalResource resource = RoleEnvironment.GetLocalResource("MyValue");
        string tempPath = resource.RootPath + "DemoFile.xls";
return tempPath;

tempPath返回类似C:\AppData\Local\dftmp\Resources\11a2435c-998c-4fe8-aa55-8bb42455b4ca\directory\DemoFile.xls的路径。

“下载文件”弹出窗口不会将文件名称为DemoFile gives some GUID为什么会这样?

enter image description here

ActionResult方法代码:

public ActionResult DownloadExcel() {
    string path = ExcelGenerationCode(fileName);
        Stream s = new FileStream(path, FileMode.Open, FileAccess.Read);
        return new FileStreamResult(s, "application/vnd.ms-excel");
    }

还试图给出名称属性

public ActionResult DownloadExcel() {
    string path = ExcelGenerationCode(fileName);
        Stream s = new FileStream(path, FileMode.Open, FileAccess.Read);
        return new FileStreamResult(s, "application/vnd.ms-excel")
        {
            FileDownloadName = "myexcelFILE1.xls"
        };
    }

在给出filename参数时低于错误。 enter image description here

我有足够的空间和记忆。

1 个答案:

答案 0 :(得分:4)

您应该返回一个新的FileContentResult,并且您的操作必须返回FileResult而不是ActionResult,例如:

public virtual FileResult DownloadFile(long fileId)
{
     string path = ExcelGenerationCode(fileName);
     return File(path, "application/vnd.ms-excel","donwload.xls");
}