HttpCachePolicy 和 SSL

发布于 2024-08-10 21:42:41 字数 618 浏览 3 评论 0原文

我有一个允许用户下载 csv 的应用程序。当不使用 SSL 时,这非常有效。但是,当使用安全连接时,我收到“Internet Explorer 无法打开此 Internet 站点”的消息。我知道问题与我的 HttpCaching 策略有关。以下 MS 支持文档解释了该问题:http://support.microsoft.com/kb/316431 但是,我似乎无法让它工作。有什么想法吗?

HttpCachePolicy cachePolicy = Response.Cache;
        cachePolicy.SetCacheability(HttpCacheability.Private);
        cachePolicy.SetNoStore();
        cachePolicy.SetMaxAge(new TimeSpan(0L));
        cachePolicy.SetRevalidation(HttpCacheRevalidation.AllCaches);

我尝试了不同 HttpCacheability 类型的组合。

I have an application that allows the user to download a csv. This works great when not using SSL. However, when using a secure connection I get the "Internet Explorer was not able to open this Internet Site". I know that the problem has to do with my HttpCaching policy. The following MS Support document explains the issue: http://support.microsoft.com/kb/316431 However, I cannot seem to get it to work. Any ideas?

HttpCachePolicy cachePolicy = Response.Cache;
        cachePolicy.SetCacheability(HttpCacheability.Private);
        cachePolicy.SetNoStore();
        cachePolicy.SetMaxAge(new TimeSpan(0L));
        cachePolicy.SetRevalidation(HttpCacheRevalidation.AllCaches);

I have tried a combination of different HttpCacheability types.

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

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

发布评论

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

评论(1

提赋 2024-08-17 21:42:41

我发现在显式设置可缓存性之前清除标头可以解决此问题。

Response.Clearheaders();

I found that clearing the headers before explicitly setting the Cacheability resolved this issue.

Response.Clearheaders();

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