强制下载图像

发布于 2024-10-06 08:56:48 字数 236 浏览 2 评论 0原文

我在 Silverlight 中使用 WebBrowser 控件,并将其设置为本地 HTML 页面。 HTML 页面有各种链接,它们都工作正常。我可以做到这样,如果用户单击图像文件,它会下载到他们的系统(或浏览器的默认行为)而不是显示在网页上吗?主要问题是,如果我无权访问服务器本身,是否可以执行此操作?谢谢 编辑 - 是否可以从客户端发送 HTTPWebRequest 来获取图像,然后编辑响应标头?这可能是一个替代方案。

I'm using a WebBrowser control in Silverlight and I'm setting it to a local HTML page. The HTML page has various links and they all work fine. Can I make it so that if the user clicks on an image file, it downloads to their system (or does the default behavior of the broweser) instead of displaying on the webpage? The main question is, is it possible to do this if I don't have access to the server itself? Thanks
edit - Is it possible to send an HTTPWebRequest to get the image and then edit the response headers, all from the client? This may be an alternative.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

从此见与不见 2024-10-13 08:56:48

执行此操作的标准方法是发送 Content-Disposition HTTP 标头,并将 attachment 作为值。有关详细信息,请参阅此处:在HTTP响应头

但是如果你无权访问服务器,我认为你无法实现这一点。

The standard way of doing this is to send the Content-Disposition HTTP header with attachment as the value. See here for more on this: Uses of content-disposition in an HTTP response header

But if you don't have access to the server, I don't think you can achieve this.

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