InterviewSolution
Saved Bookmarks
| 1. |
Explain the use of fragment caching. |
|
Answer» Fragment caching is used to cache a portion of a target page instead of the WHOLE page. The target portion can be generated by REQUEST. For this, developers can create a control with the below syntax: <%@ OutputCache Duration="120" VaryByParam="CategoryID;SelectedID"%> |
|