ASP.NET Caching Question:

Explain Page Output Caching?

Tweet Share WhatsApp

Answer:

This type of caching is implemented by placing OutputCache directive at the top of the .aspx page at design time.
For example:
<%@OutputCache Duration= "30" VaryByParam= "DepartmentId"%>

The duration parameter specifies for how long the page would be in cache and the VaryByParam parameter is used to cache different version of the page.
The VaryByParam parameter is useful when we require caching a page based on certain criteria.

Download ASP.NET Caching PDF Read All 9 ASP.NET Caching Questions
Previous QuestionNext Question
Explain advantages of Caching?What is Page Fragment Caching?