System.Web.UI Namespace
Specifies the valid values for the location of the output cache.
The values specified by this enumeration are used when you include an @ OutputCache directive in a .aspx
file. These values set the cacheability of page output. For more information, see Caching ASP.NET Pages.
Member name |
Description |
Any |
The output cache can be located on the browser client ( where the request originated ), on a proxy server ( or any other server ) participating in the request, or on the server where the request was processed. |
Client |
The output cache is located on the browser client where the request originated. |
Downstream |
The output cache can be stored in any HTTP 1.1 cache-capable devices other than the origin server. This includes proxy servers and the client that made the request. |
None |
The output cache is disabled for the requested page. |
Server |
The output cache is located on the Web server where the request was processed. |
@ OutputCache Directive Caching ASP.NET Pages Page Class