强制文件下载标题

时间:2012-04-04 09:41:37

标签: c# header http-headers

我们在ASP.NET服务器上提供文件时遇到了一个奇怪的问题。

如果用户点击链接,我们想要一个文件下载对话框。没有WMP开放WMV,没有Adobe开放PDF等等。

为了强制执行此操作,我们使用以下HTTP处理程序跳转WMV,PDF等。

    public void ProcessRequest(HttpContext context)
    {
        // don't allow caching
        context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
        context.Response.Cache.SetNoStore();
        context.Response.Cache.SetExpires(DateTime.MinValue);

        string contentDisposition = string.Format("attachment; filename=\"{0}\"", Path.GetFileName(context.Request.PhysicalPath));
        string contentLength;

        using (FileStream fileStream = File.OpenRead(context.Request.PhysicalPath))
        {
            contentLength = fileStream.Length.ToString(CultureInfo.InvariantCulture);
        }

        context.Response.ContentType = "application/octet-stream";
        context.Response.AddHeader("Content-Disposition", contentDisposition);
        context.Response.AddHeader("Content-Length", contentLength);
        context.Response.AddHeader("Content-Description", "File Transfer");
        context.Response.AddHeader("Content-Transfer-Encoding", "binary");
        context.Response.TransmitFile(context.Request.PhysicalPath);
    }

使用fiddler嗅探,这些是发送的实际标题:

HTTP/1.1 200 OK
Cache-Control: no-cache, no-store
Pragma: no-cache
Content-Length: 8661299
Content-Type: application/octet-stream
Expires: -1
Server: Microsoft-IIS/7.5
Content-Disposition: attachment; filename="foo.wmv"
Content-Description: File Transfer
Content-Transfer-Encoding: binary
X-Powered-By: ASP.NET
Date: Wed, 04 Apr 2012 09:38:14 GMT

然而,当我们点击WMV链接时仍会打开WMP,同样适用于Adobe Reader,它仍会在IE窗口中打开Adobe Reader。

Firefox上似乎没有出现此问题,但它出现在Windows 7(32位)的IE8(32位)上。

任何帮助?

1 个答案:

答案 0 :(得分:5)

替换

context.Response.ContentType = "application/octet-stream";

context.Response.ContentType = "application/force-download";

并查看其功能,但不知道它是否适用于所有浏览器。