强制文件下载标头

本文关键字:文件下载 | 更新日期: 2023-09-27 18:30:09

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

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

为了强制执行此操作,我们使用以下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位的)上。

有什么帮助吗?

强制文件下载标头

替换

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

带有

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

看看它能做什么,不知道它是否适用于所有浏览器。