View Single Post
  #4  
Old 08-07-2007, 03:43 AM
S.Vinothkumar S.Vinothkumar is offline
D-Web Genius
 
Join Date: May 2007
Posts: 905
S.Vinothkumar is on a distinguished road
Default Re: What are the Types of caching in dot net 2005?

Output cache functionality is achieved by using “OutputCache” attribute on ASP.NET page header. Below is the syntax.

<%@ OutputCache Duration="20" Location="Server" VaryByParam="state"
VaryByCustom="minorversion" VaryByHeader="Accept-Language"%>

VaryByParam :- Caches different version depending on input parameters send
through HTTP POST/GET.

VaryByHeader:- Caches different version depending on the contents of the
page header.

VaryByCustom:-Lets you customize the way the cache handles page variations
by declaring the attribute and overriding the GetVaryByCustomString handler.

VaryByControl:-Caches different versions of a user control based on
the value of properties of ASP objects in the control.
__________________
S.VinothkumaR
Behind me is infinite power,
Before me is Endless Possibility,
Around me is Boundless Opportunity,
Why should I fear!
Reply With Quote