我在IIS7和
Windows Server 2008上部署了一个ASP.NET MVC应用程序.
我已经在这里和网络上阅读了帖子,但是无法让客户端缓存工作.
我正在尝试缓存/ Content文件夹中的所有内容.到目前为止,我在IIS管理器中选择了该文件夹,并设置了相应的HTTP响应标头(在Common Headers下).我还检查了/ Content文件夹中的web.config文件,并设置了值.
/ Content中的所有资源都以此形式返回(来自FireBug):
Cache-Control no-cache,no-store,must-revalidate Pragma no-cache Content-Type image/png Expires -1 Last-Modified Sun,11 Oct 2009 19:01:40 GMT Accept-Ranges bytes Etag "f318d643a54aca1:0" Server Microsoft-IIS/7.0 X-Powered-By ASP.NET Date Sun,11 Oct 2009 20:40:01 GMT Content-Length 620
请注意请求此静态图像的Cache-Control和Expires值.
该网站目前在Debug中编译(这将改变),但肯定不会有所作为?
显然我忽略了一些东西,任何想法都会受到赞赏.
谢谢
解决方法
如果您无法使用IIS管理工具使其工作,请尝试Jeff Atwood的推荐
this thread:
this thread:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <staticContent> <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" /> </staticContent> </system.webServer> </configuration>