gpt4 book ai didi

c# - 在 IIS8 中部署时缓存不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 21:27:08 24 4
gpt4 key购买 nike

我们使用 MVC4 和 Jquery Mobile 开发 Web 应用程序。我们的要求是缓存所有的图片,jquery,css。所以我尝试了下面的代码,它就像魅力一样。

  <staticContent>
<clientCache cacheControlMaxAge ="2.00:00:00" cacheControlMode="UseMaxAge" />
</staticContent>

在我的 Visual Studio 中,它的效果很好。我可以捕获所有图像、脚本。

但是当我在 IIS8 中部署时缓存不起作用。我尝试了很多但没有运气。请指导我。为什么在 IIS 中部署时缓存不起作用。

我正在使用 IIS8。我注意到的一件事是,如果我通过单击部署的网站从 IIS 浏览,它会缓存所有内容。但是如果像 10.111.151.88:8002 这样的类型的 url 没有在浏览器中缓存。

最佳答案

最后我找到了答案伙计们。问题是我在 global.asax 中有以下代码

    protected void Application_BeginRequest()
{
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1));
Response.Cache.SetNoStore();
}

它删除了我的所有缓存并使浏览器不缓存任何内容。

关于c# - 在 IIS8 中部署时缓存不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26336063/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com