开发者

In an ashx file, can I set the filename of the returned file?

My ashx response.writes a s开发者_StackOverflow社区imple text file that is returned. Can I change the filename, so if my ashx is located at mysite.com/someURL it doesn't return someURL.txt but rather, myFileName.txt ?


You can use Content-Disposition headed and Response.AddHeader method for setting name of downloaded file.

context.Response.AddHeader("Content-Disposition", "attachment; filename=myFileName.txt");
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜