asp.net-mvc – 缓存CSS和JS文件

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 缓存CSS和JS文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在不到2-3分钟内刷新我的网站时,Firebug显示了这些不错的请求:
1. /core.css          304 Not modified
2. /core.js           304 Not modified
3. /background.jpg    304 Not modified

但是当我刷新3分钟后,我得到:

1. /core.css          200 OK
2. /core.js           200 OK
3. /background.jpg    304 Not modified

为什么我的CSS和JS文件被再次下载和图像不是?

我使用ASP.NET MVC 3,我不使用[OutputCache],在我的/ Content文件夹(其中所有css,js和img文件存在于子文件夹中)我有这个Web.config:

<configuration>
    <system.webServer>
        <staticContent>
            <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="1.00:00:00" />
        </staticContent>
    </system.webServer>
</configuration>

它设置HTTP头缓存控制:max-age = 86400 ONLY。所以基本上CSS,JS和图像都是以同样的方式对待的,但是不管怎样,CSS和JS不会被缓存一段较长的时间?为什么呢?

解决方法

希望这将有助于: http://www.iis.net/ConfigReference/system.webServer/staticContent/clientCache

The <clientCache> element of the 07001 element specifies cache-related HTTP headers that IIS 7 and later sends to Web clients,which control how Web clients and proxy servers will cache the content that IIS 7 and later returns…

原文链接:https://www.f2er.com/aspnet/252236.html

猜你在找的asp.Net相关文章