Page.Cache Propiedad

Definición

Obtiene el objeto Cache que está asociado a la aplicación en que reside la página.

public:
 property System::Web::Caching::Cache ^ Cache { System::Web::Caching::Cache ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Web.Caching.Cache Cache { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Cache : System.Web.Caching.Cache
Public ReadOnly Property Cache As Cache

Valor de propiedad

Cache asociado a la aplicación de la página.

Atributos

Excepciones

No se crea una instancia de Cache.

Ejemplos

En el ejemplo de código siguiente se inserta la suma de dos enteros en el System.Web.Caching.Cache objeto mediante la Page.Cache propiedad . A continuación, recupera el valor mediante el Cache.Get método y lo escribe en un Label control de servidor web.

// This is a simple page that demonstrates how to place a value
// in the cache from a page, and one way to retrieve the value.
// Declare two constants, myInt1 and myInt2 and set their values
// and declare a string variable, myValue.
const int myInt1 = 35;
const int myInt2 = 77;
string myValue;

// When the page is loaded, the sum of the constants
// is placed in the cache and assigned a key, key1.
void Page_Load(Object sender,  EventArgs arg) {
  Cache["key1"] = myInt1 + myInt2;

}

// When a user clicks a button, the sum associated
// with key1 is retrieved from the Cache using the
// Cache.Get method. It is converted to a string
// and displayed in a Label Web server control.
void CacheBtn_Click(object sender, EventArgs e) {
   if (Cache["key1"] == null) {
      myLabel.Text = "That object is not cached.";
   }
   else {
      myValue = Cache.Get("key1").ToString();
      myLabel.Text = myValue;
   }
}
  ' This is a simple page that demonstrates how to place a value
  ' in the cache from a page, and one way to retrieve the value.
  ' Declare two constants, myInt1 and myInt2 and set their values
  ' and declare a string variable, myValue.
  Const myInt1 As Integer = 35
  Const myInt2 As Integer = 77
  Dim myValue As String


  ' When the page is loaded, the sum of the constants
  ' is placed in the cache and assigned a key, key1.
  Sub Page_Load(sender As [Object], arg As EventArgs)
     Cache("key1")= myInt1 + myInt2
  End Sub 'Page_Load


  ' When a user clicks a button, the sum associated
  ' with key1 is retrieved from the Cache using the 
  ' Cache.Get method. It is converted to a string
  ' and displayed in a Label Web server control.
  Sub CacheBtn_Click(sender As Object, e As EventArgs)
    If Cache("key1") Is Nothing Then
     myLabel.Text = "That object is not cached."
    Else
     myValue = Cache.Get("key1").ToString()
     myLabel.Text = myValue
    End If
  End Sub 'CacheBtn_Click

Comentarios

El objeto de Cache una aplicación permite almacenar y recuperar datos arbitrarios en las solicitudes posteriores. La memoria caché no está asociada específicamente a una página o sesión de usuario. Se usa principalmente para mejorar el rendimiento de la aplicación. Para obtener más información, consulte Almacenamiento en caché de datos de la aplicación. Para obtener más información sobre la diferencia entre el almacenamiento en caché de aplicaciones y el almacenamiento en caché de salida de página, consulte ASP.NET Información general sobre el almacenamiento en caché.

Se aplica a

Consulte también