I am last year BSc( I.T) student. Currently I am leering ASP.net. I want to know about Different types of caching using cache object of ASP.NET? All possible replies and suggestions on this topic are very much appreciated. I am waiting for the same.
I am last year BSc( I.T) student. Currently I am leering ASP.net. I want to know about Different types of caching using cache object of ASP.NET? All possible replies and suggestions on this topic are very much appreciated. I am waiting for the same.
You can use 2 types of o/P caching to cache info that is to be transmitted to and showed in a Web browser:
Page O/P Caching Page output caching ads the response of page to cache object. Later when page is requested page is displayed from cache before creating the page object and displaying it.
Page Fragment Caching if parts of the page are changing, you can cover the static sections as user controls and cache the user controls using page fragment caching.
Bookmarks