Using Page Output Caching

You enable Page Output Caching by adding an <%@ OutputCache %> directive to a page. For example, the page in Listing 29.1 caches its contents for 15 seconds.

Listing 29.1. CachePageOutput.aspx

images

The page in Listing 29.1 displays the current server time in a Label control. The page also includes an <%@ OutputCache %> directive. If you refresh the page multiple times, you notice that the time is not updated until at least 15 seconds have passed.

When you cache a page, the contents of the page are not regenerated each time you request the page. The .NET class that corresponds to the page is not executed with each page ...

Get ASP.NET 4 Unleashed now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.