3

我有一个资源处理程序,它是 Response.WriteFile(fileName) 基于通过查询字符串传递的参数。我正在正确处理 mimetype,但问题出在某些浏览器中,文件名显示为 Res.ashx(处理程序的名称)而不是 MyPdf.pdf(我正在输出的文件)。有人可以告诉我在将文件发送回服务器时如何更改文件名吗?这是我的代码:

// Get the name of the application
string application = context.Request.QueryString["a"];
string resource = context.Request.QueryString["r"];

// Parse the file extension
string[] extensionArray = resource.Split(".".ToCharArray());

// Set the content type
if (extensionArray.Length > 0)
    context.Response.ContentType = MimeHandler.GetContentType(
        extensionArray[extensionArray.Length - 1].ToLower());

// clean the information
application = (string.IsNullOrEmpty(application)) ?
    "../App_Data/" : application.Replace("..", "");

// clean the resource
resource = (string.IsNullOrEmpty(resource)) ?
    "" : resource.Replace("..", "");

string url = "./App_Data/" + application + "/" + resource;


context.Response.WriteFile(url);
4

3 回答 3

4

根据 Joel 的评论,您的实际代码将如下所示:

context.Response.AddHeader("content-disposition", "attachment; filename=" + resource);
于 2008-10-30T19:09:03.560 回答
1

这篇 Scott Hanselman 的帖子应该会有所帮助:
http ://www.hanselman.com/blog/CommentView.aspx?guid=360

于 2008-10-30T18:58:43.817 回答
0

谢谢你们的回答。最终代码有效并检查 pdf。

if (extensionArray[extensionArray.Length - 1].ToLower() == "pdf")
    context.Response.AddHeader("content-disposition", 
        "Attachment; filename=" + resource);
于 2008-10-30T19:18:42.903 回答