更改“将图像另存为...” .net 中的 http 处理程序生成的图像的名称
我在 MySQL 数据库中存储了一系列图像,并使用 .NET Http 处理程序 (showImage.ashx) 显示这些图像。如果用户右键单击图像并选择“将图像另存为...”,则图像名称始终默认为“showImage.jpg”。我在数据库中保存了潜在的图像名称,有什么方法可以通过http处理程序控制图像的默认保存名称?
添加 Content-Disposition 标头是解决方案,非常感谢!
HttpContext.Current.Response.AppendHeader("Content-Disposition","filename=" + fileName + ";");
I have a series of images stored in a MySQL database that I am displaying with a .NET Http handler (showImage.ashx). If the user right clicks on an image and selects "save image as...", the image name always defaults to 'showImage.jpg'. I have potential image names saved in the database, is there any way to control the default save name of an image through the http handler?
Adding a Content-Disposition header was the solution, thanks so much!
HttpContext.Current.Response.AppendHeader("Content-Disposition","filename=" + fileName + ";");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加一个
Content-Disposition
标头,例如这:You need to add a
Content-Disposition
header, like this: