我有一个带有IHttpHandler的ashx文件。当我将一些数据发布到这个IHttpHandler时,我做了一些工作,创建了一个文件,然后希望将该文件返回给用户,以便他们可以通过浏览器保存文件。
创建文件后,我就会尝试将文件写回响应:
HttpResponse response = context.Response;
response.ClearContent();
response.Clear();
response.ContentType = "application/octet-stream";
response.AddHeader("Content-Disposition", "attachment; filename=MYFILE.EXT");
response.WriteFile("C:\tempstuff\MYFILE.EXT");
稍后在最后一个街区,我会打电话:
response.End()
当我打电话给这个处理程序时,没有任何反应。返回响应200,不抛出任何错误 - 但浏览器不会提示用户保存此文件。
以下是Fiddler拍摄的回应:
HTTP/1.1 200 OK
Server: ASP.NET Development Server/10.0.0.0
Date: Thu, 23 Aug 2012 12:12:19 GMT
X-AspNet-Version: 4.0.30319
Content-Disposition: attachment; filename=MYFILE.EXT
Cache-Control: private
Content-Type: application/octet-stream
Content-Length: 781053
Connection: Close
[raw content of the file here]
这个回复对我来说是正确的。它包含文件的内容 - 但是在任何主流浏览器下,没有文件对话框提示我保存文件。
我在这里做错了什么?
更新:如果有帮助,我可以在这里使用我的网络应用程序中的JavaScript来调用此HttpHandler。
$.ajax({
type: 'POST',
url: ashxUrl,
data: postData,
success: function (result) {
// Doin' stuff on success
},
error: function (error) {
// Doin' stuff on error.
}
});
答案 0 :(得分:3)
您已经说过要将网络通话的结果提供给您的javascript。如果这导致浏览器提示你保存它会非常烦人,因为所有的AJAX都是不可能的。
您希望浏览器本身拨打电话。对于GET而言,设置self.location.href
只是一件简单的事情。对于POST,最简单的方法通常是用数据填写隐藏的表单,然后submit()
。