HttpCachePolicy和@OutputCache指令。編程
對於輸出緩存的控制,除了使用OutputCache指令外,還能夠使用HttpCachePolicy類,經過該類能夠編程控制緩存。瀏覽器
Response.Cache屬性提供了System.Web.HttpCachePolicy類的一個實例。下面是使用@OutputCache指令和HttpCachePolicy之間等效的代碼:緩存
<%@ OutputCache Duration="60" VaryByParam="None" %> 服務器
編程的方法: ide
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60)); Response.Cache.SetCacheability(HttpCacheability.Public); 代理
<%@ OutputCache Duration="60" Location="Client" VaryByParam="None" %> it
編程的方法: io
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60)); Response.Cache.SetCacheability(HttpCacheability.Private); class
<%@ OutputCache Duration="60" Location="Downstream" VaryByParam="None" %> stream
編程的方法:
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60)); Response.Cache.SetCacheability(HttpCacheability.Public); Response.Cache.SetNoServerCaching();
<%@ OutputCache Duration="60" Location="Server" VaryByParam="None" %>
編程的方法:
TimeSpan freshness = new TimeSpan(0,0,0,60); DateTime now = DateTime.Now; Response.Cache.SetExpires(now.Add(freshness)); Response.Cache.SetMaxAge(freshness); Response.Cache.SetCacheability(HttpCacheability.Server); Response.Cache.SetValidUntilExpires(true);
<%@ OutputCache duration="60" varybyparam="City" %>
編程的方法:
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60)); Response.Cache.SetCacheability(HttpCacheability.Public); Response.Cache.VaryByParams["City"] = true;
VaryByCustom 屬性、 VaryByHeader 屬性和 @ OutputCache 指令中的 VaryByParam 屬性,HttpCachePolicy 類提供了 VaryByHeaders 屬性和 VaryByParams 屬性和 SetVaryByCustom 方法。
要關閉輸出緩存的 ASP.NET 網頁在客戶端的位置和代理的位置設置 位置 屬性值爲 無,而後 VaryByParam 值設置爲 無@ OutputCache 指令中。使用下面的代碼示例關閉客戶端和代理服務器緩存。
<%@ OutputCache Location="None" VaryByParam="None" %>
Response.Cache.SetCacheability(HttpCacheability.NoCache);