October 2010
Intermediate to advanced
1920 pages
73h 55m
English
The ASP.NET 4 Framework supports the following types of caching:
• Page Output Caching
• Partial Page Caching
• DataSource Caching
• Data Caching
Page Output Caching enables you to cache the entire rendered contents of a page in memory (everything that you see when you select View Source in your web browser). The next time that any user requests the same page, the page is retrieved from the cache.
Page Output Caching caches an entire page. In some situations, this might create problems. For example, if you want to display different banner advertisements randomly in a page, and you cache the entire page, the same banner advertisement displays with each page request.
The AdRotator control included in ASP.NET Framework ...