主要用於不經常更新和修改,而在第一次編譯是時要經過大量處理的數據。頁面輸出緩存是緩存的整個頁面
使用很簡單<%@ OutPutCache Duration="60" VaryByParam="none"%>
Duration:緩存時間
VaryByParam:通過參數來更新緩存的內容
還有其他的一些屬性
CacheProfile:調用WebConfig中的緩存時間
例如:WebCofig中
復制代碼 代碼如下:
<system.web>
<outputCacheSetting>
<outputCacheProfiles>
<add name="cacheTest" duration="50"/>
<outputCacheProfiles>
</outputCahceSetting>
</system.web>
在頁面中聲明
<%@ OutputCache CacheProfile="cacheTest" VaryByParam="none"%>
VaryByControl:通過控件來改變緩存
<%@OutputCache Duration="60" VaryByParam="none" VaryByControl="Button1"%>