在asp.net中下载文件后不再回发

时间:2011-10-03 04:47:10

标签: c# asp.net download

从网页下载文件后,我无法在该页面上执行任何操作。这就像页面不再起作用了。当我点击其他按钮时,没有回发帖。

这是我的编码。

filename= "test.txt"
Response.AppendHeader("content-disposition", "attachment; filename= " + fileName);
Response.WriteFile(Server.MapPath("~/" + fileName));
Response.End();

所以我尝试评论 Response.End(),但它仍无效。

可能出现的问题是什么?

更新

Go to this link to see how I solved it.

0 个答案:

没有答案