asp.net mvc 缓存

 

webConfig 里面配置缓存时间

<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="Long" duration="360"/>
<add name="Short" duration="5"/>
</outputCacheProfiles>

</outputCacheSettings>
</caching>

 

[OutputCache(CacheProfile = ("Long"))]

 

 [OutputCache(Duration = 60,Location = OutputCacheLocation.Client)]  在什么位置坐缓存

posted @ 2015-09-11 17:54  mysuper  阅读(148)  评论(0编辑  收藏  举报