我有一个资源处理程序,它是 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);