Hi,
I want to know that What is role of caching in Asp.net ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Datta KharadPosted Jan 19, 2012, 12:58 AM
Refer our recommended article:-
http://www.c-sharpcorner.com/uploadfile/prg.apv/caching-in-Asp-Net/
Satyapriya NayakPosted Jan 18, 2012, 8:03 PM
Catching:- It is a performance improvement technique.
1.It handles storage of frequently accessed data in the memory of the system so that user can access data very quickly.
2.It is used to store recently visited webpage.suppose we are surfing the site and watching various pages. At the time we want to go back to the previous page it loads the page from the memory instead of the server.
3.It has a disadvantage too. Supose the website is continuously updated the user is not able to watch the changes.Refer
http://www.codeproject.com/KB/web-cache/cachingaspnet.aspx
Thanks