ASP.NET caching types - Caching pages and data

Q.  How many types of caching ASP.NET supports?
- Published on 24 Jul 15

a. Page Output Caching
b. Partial Page Caching
c. Data Caching
d. DataSource Caching
e. All of the above.

ANSWER: All of the above.
 

    Discussion

  • Brijesh   -Posted on 24 Sep 15
    The ASP.NET Framework supports the following types of caching:
    • Page Output Caching
    • Partial Page Caching
    • DataSource Caching
    • Data Caching

    Page Output Caching caches an entire page.
    Partial Page Caching caches only particular regions of a page.
    DataSource Caching enables you to catch the data by using DataSource control.
    Data Caching is used to cache arbitrary objects in memory. It is the fundamental caching mechanism.

Post your comment / Share knowledge


Enter the code shown above:
 
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)