码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET 客户端缓存(Client Cache)

时间:2015-01-13 14:02:06      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

通常在服务器端大家都已经做了很多缓存的工作,ASP.NET CACHE也好MemeryCache也好却总是忽略了客户端缓存。

因为大家都知道不管哪个client都会缓存已经访问过的站点,但是浏览器缓存时间都是短暂的,所以最好是自定义延长浏览器缓存。

这个时候就需要修改Http头信息了,头信息中有个字段:

Cache-Control:no-cache

有很多办法可以修改头字段,比较方便通用的就是在web.config里设置,例如:

<?xml version="1.0"?> 
<configuration> 
  <system.webServer> 
    <staticContent> 
      <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="8760:00:00"/> 
    </staticContent> 
  </system.webServer> 
    <system.web> 
    </system.web> 
</configuration>

cacheControlMaxAge="8760:00:00" 缓存8760个小时

ASP.NET 客户端缓存(Client Cache)

标签:

原文地址:http://www.cnblogs.com/yxlblogs/p/4220995.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!