c# - storing cache of pages at different location instead of default -
i want implement concept of caching on asp.net web application. not mvc application. have learned how caching of pages (aspx)
<%@ outputcache duration="10" varybyparam="none" location="serverandclient" %>
it catching page. want store cache in folder @ different location instead of default. dont know hoe that. , other page folder different. there way this?
thanks in advance
by default, when use [outputcache] attribute, content cached in 3 locations: web server, proxy servers, , web browser. can control content cached modifying location property of [outputcache] attribute.
you can set location property 1 of following values:
· any
· client
· downstream
· server
· none
· serverandclient
Comments
Post a Comment