Page::Cache Property
Gets the Cache object associated with the application in which the page resides.
Assembly: System.Web (in System.Web.dll)
| Exception | Condition |
|---|---|
| HttpException | An instance of Cache is not created. |
An application's Cache object allows you to store and retrieve arbitrary data on subsequent requests. The cache is not specifically associated with a page or user session. It is used primarily to enhance application performance. For more information, see Caching Application Data. For more information on the difference between application caching and page output caching, see ASP.NET Caching Overview.
The following code example inserts the sum of two integers into the System.Web.Caching::Cache object using the Page::Cache property. It then retrieves the value using the Cache::Get method and writes it to a Label Web server control.
Available since 1.1