更改“将图像另存为...” .net 中的 http 处理程序生成的图像的名称

发布于 2024-09-01 01:54:43 字数 335 浏览 7 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清晰传感 2024-09-08 01:54:43

您需要添加一个 Content-Disposition 标头,例如这:

Content-Disposition: filename=Something.jpg

You need to add a Content-Disposition header, like this:

Content-Disposition: filename=Something.jpg
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文