在 IE 中通过 HTTP 下载文件

发布于 2024-10-26 19:57:41 字数 529 浏览 6 评论 0原文

我在 IE 中通过 HTTPS 下载文件(在我的 DNN 模块中)时遇到问题。这是 IE 中的一个已知问题(Microsoft 支持),我发现了很多相关文章,例如此处。 该帖子建议不要触及 IE 中安全连接的缓存设置。但我们的代码一直使用HttpCacheability.Public。

Response.Cache.SetCacheability(HttpCacheability.Public);

虽然,当我检查相关 HTTP 响应的标头时,它显示了

Cache-Control: no-cache, 
Pragma: no-cache

如何控制这些值?

I am experiencing problems with file downloads (in my DNN module) in IE over HTTPS. It is a known problem in IE (Microsoft support) and I found many related articles, like the one here.
The post suggests not touching the cache settings for a secure connection in IE. But our code has always been using HttpCacheability.Public.

Response.Cache.SetCacheability(HttpCacheability.Public);

Although, when I inspected the headers for the HTTP response in question, it shows

Cache-Control: no-cache, 
Pragma: no-cache

How else can these values be controlled?

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

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

发布评论

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

评论(1

阳光的暖冬 2024-11-02 19:57:41

事实证明,客户的主机设置覆盖了模块输出。改变它们有帮助。

It turned out that the customer's host settings were over-riding the module output. changing them helped.

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