<system.web>
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="pageCache" duration="60" varyByParam="none" enabled ="true"/>
</outputCacheProfiles>
</outputCacheSettings>
</caching>
</system.web>
上面的意思为过期时间为60秒,不根据页面参数缓存。
页面中调用此设置如下。
<%@ OutputCache CacheProfile="pageCache" %>
暂时没找到更简单的设置方法
时间: 2024-11-09 00:18:21