在HTTP标头中处理(c#)
Content-Disposition是否有“attachment; filename = ...”的替代方案 ?
我正在发送一个流媒体exe文件,并希望浏览器在我开始发送时打开“另存为”或“运行”。
我正在使用C#HttpResponseHeader并希望使用其成员或HttpWorkerRequest成员。
谢谢,Moshe
Content-Disposition
是让浏览器提示用户保存文件的正确方法。 使用HttpResponse.AppendHeader()
添加标题值,例如:
Response.AppendHeader("Content-Type", "...")
Response.AppendHeader("Content-Disposition", "attachment; filename=...")
链接地址: http://www.djcxy.com/p/46831.html
上一篇: Disposition in HTTP Header (c#)
下一篇: Download file from NodeJS server adding header for content disposition