html - Does my ASP.NET cache store on server or browser -
in asp.net, if use:
$<%@outputcache duration="3" varybyparam="*" %>
or
cache.insert("names", mydataset);
does store cache on browser or server? know they're 2 different methods caching , there several more i'm trying find out when cache stored on client browser or on server , can find pros , cons between cache being store on either of them.
this:
<%@outputcache duration="3" varybyparam="*" %>
may cached @ both, server or client because default location
value of outputcache
directive any
. see here reference.
now, this:
cache.insert("names", mydataset);
will cached on server side in application cache.
Comments
Post a Comment