为什么不能在asp.net中打开下载的docx文件?

时间:2012-07-24 21:47:06

标签: asp.net download content-type

我尝试从服务器端下载docx文件。 我错了什么?

这是代码:

 FileInfo file = new FileInfo(filepath);
        Response.Clear();
        Response.ClearHeaders();
        Response.ClearContent();
        Response.AppendHeader("Content-Disposition", "attachment; filename = " + ((Button)sender).CommandName + ".docx");
        Response.AppendHeader("Content-Length", file.Length.ToString());
        Response.ContentType = "application/octet-stream";
        Response.WriteFile(file.FullName);
        Response.Flush();
        Response.Close();
        Response.End();

1 个答案:

答案 0 :(得分:1)

我在PDF的另一个问题上发布了类似的东西但是这里有。通过ASHX处理程序将这种数据流回来要容易得多。

像我在这个问题中发布的内容,但有一个docx文件。

Display PDF in iframe

看起来您正在使用普通的ASP.NET页面,并试图通过清除标题等来修改标准行为。您不必使用ashx处理程序来控制标题或类似的东西。