asp.net ashx处理程序提示下载而不是显示文件

时间:2010-08-10 18:24:19

标签: asp.net

我在我的应用程序中实现了一个非常适用于图像的通用处理程序,但是当我在浏览器中使用图像的查询字符串手动键入处理程序URL时,它会提示下载而不是显示。这是我的代码:

public void ProcessRequest(HttpContext context)
        {
            if (this.FileName != null)
            {
                string path = Path.Combine(ConfigurationManager.UploadsDirectory, this.FileName);

                if (File.Exists(path) == true)
                {
                    FileStream file = new FileStream(path, FileMode.Open);
                    byte[] buffer = new byte[(int)file.Length];
                    file.Read(buffer, 0, (int)file.Length);
                    file.Close();
                    context.Response.ContentType = "application/octet-stream";
                    context.Response.AddHeader("content-disposition", "attachment; filename=\"" + this.FileName + "\"");
                    context.Response.BinaryWrite(buffer);
                    context.Response.End();
                }
            }
        }

我正在使用八位字节流,因为我处理的不仅仅是图像,我并不总是知道文件的内容类型。提前谢谢!

3 个答案:

答案 0 :(得分:6)

唯一的方法是指定正确的ContentType,以便浏览器知道如何处理接收文件,具体取决于安装的插件(例如,查看浏览器框架中的pdf文件)和系统协议(例如,提供在MS中打开文档)办公室而不是简单的下载)

您可以尝试根据文件扩展名指定内容类型,即:

if(Path.GetExtension(path) == ".jpg")
   context.Response.ContentType = "image/jpeg";
else
   context.Response.ContentType = "application/octet-stream";

答案 1 :(得分:1)

如果您将ContentType存储为文件元数据的一部分,当您将其拉回时可以使用它。

theFile = GetFile(id)
context.Response.ContentType = theFile.Type;

答案 2 :(得分:-1)

content-disposition标头是导致浏览器显示下载对话框的标头。删除该行,它将显示在浏览器中。