ASP.NET
Cache di ASP.NET
Ricerca…
Data Cache
ASP.Net espone l'API Cache per memorizzare i dati nella cache per il recupero in seguito.
Memorizza la stringa
Cache["key"]="value";
Recupera stringa
var value="";
if (Cache["key"] != null)
value = Cache["key"].ToString();
Puoi anche utilizzare i metodi Aggiungi o Inserisci .
protected void Page_Load( object sender, EventArgs e)
{
if ( this.IsPostBack )
{
label1.Text + = "Page is posted back";
}
else
{
label1.Text + = "Page is created";
}
if ( Cache [ "item"] == null )
{
label1.Text + = "New item is created";
DateTime item = DateTime.Now;
label1.Text + = "Item is stored";
Cache.Insert ( "item", item, null );
DateTime.Now.AddSeconds ( 20 ), TimeSpan.Zero;
}
else
{
label1.Text + = "Item is accesses";
DateTime item = ( DateTime) Cache [ "item" ];
label1.Text + = "Time is: " + item.ToString();
label1.Text + = <br/>";
}
label1.Text + = "<br/>";
}
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow