InterviewSolution
Saved Bookmarks
| 1. |
How can you cache different versions of the same page using the ASP.NET Cache object? |
|
Answer» OUTPUT cache FUNCTIONALITY is achieved using the OutputCache attribute in the ASP.NET page header. Below is the syntax: <%@ OutputCache Duration="20" Location="Server" Vary By Param="state" Vary By Custom="minor version" Vary By Header="Accept-Language"%>
|
|