Explain the types of Caching using Cache object of ASP.NET

Explain the types of Caching using Cache object of ASP.NET.

Page output: Is used to fetch information or data at page level. It is best used when the site is mainly static. Used by declaring the output page directive.

Page fragment: Is used to cache the structure level information. It is used when parts of pages change. For example: user control.

Programmatic or data: Is used to fetch the information of an application quickly based on the requirements.
How to Cache different version of same page? - ASP.NET
How to Cache different version of same page - The ways to cache different versions on the same page using ASP.NET cache object is using OutputCache object..
Explain how to implement Fragment Cache - ASP.NET
Explain how to implement Fragment Cache - Fragment cache is to store user controls individually within a web form in cache..
Explain the various modes of storing ASP.NET session.
Various modes of storing ASP.NET session - Types of sessions...
Post your comment