使用Chrome时,Response Writefile不会创建PDF

时间:2011-10-18 23:19:21

标签: google-chrome response.write writefile

我正在使用以下代码向用户发送PDF以打开/下载。这在IE9中工作正常。有什么想法在Chrome中不起作用吗?

Response.Clear();

Response.AddHeader("Content-Disposition", "attachment; filename= \"" + myFile + "\"");
Response.AddHeader("Content-Length", myFile.Length.ToString());

Response.WriteFile(myFile.FullName);

Response.Flush();
Response.End();

1 个答案:

答案 0 :(得分:0)

添加:

Response.ContentType = "application/pdf";