最簡單的緩存機制,把整個Aspx頁面保存在服務(wù)器端內(nèi)存中,用戶請求頁面時,直接從服務(wù)器端內(nèi)存中提取數(shù)數(shù)據(jù),不在經(jīng)歷頁面的生命周期。主要用于不經(jīng)常更新和修改,而在第一次編譯是時要經(jīng)過大量處理的數(shù)據(jù)。頁面輸出緩存是緩存的整個頁面。
使用很簡單<%@ OutPutCache Duration="60" VaryByParam="none"%>
Duration:緩存時間
VaryByParam:通過參數(shù)來更新緩存的內(nèi)容
還有其他的一些屬性
CacheProfile:調(diào)用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"%>
更多信息請查看IT技術(shù)專欄