如何在 ASP.NET 中设置多个缓存控制指令

发布于 2024-09-02 04:17:53 字数 287 浏览 1 评论 0原文

我必须在 ASP.NET 页面上设置几个特定的​​缓存控制指令才能通过 Hailstorm 安全扫描。例如,

Cache-control: no-cache="set-cookie"

之外

Cache-control: no-cache

除了我在 C# 代码隐藏中使用以下行设置后者

Response.CacheControl = "no-cache";

,它还希望我拥有:是否有一种特殊的方法可以同时指示两个指令?我只是用分号分隔它们吗?

I have to have several certain cache-control directives set on an ASP.NET page in order to pass a Hailstorm security scan. For example, it wants me to have

Cache-control: no-cache="set-cookie"

in addition to

Cache-control: no-cache

I have been setting the latter with the following line in my C# codebehind:

Response.CacheControl = "no-cache";

Is there a special way to indicate both directives at once? Do I just separate them with a semicolon?

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

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

发布评论

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

评论(1

旧人哭 2024-09-09 04:17:53

您可以在 OnInit 事件中执行此操作,如下所示:

  protected override void OnInit(EventArgs e)
        {
            Response.CacheControl = "no-cache"; 

            base.OnInit(e);
        }

为此目的创建 HttpModule 也许是个好主意。

You can do this in the OnInit event like this:

  protected override void OnInit(EventArgs e)
        {
            Response.CacheControl = "no-cache"; 

            base.OnInit(e);
        }

Maybe a good idea to create HttpModule for this purpose.

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