Basic operations executed on the ASP.NET Cache object : Introduction « Cache « ASP.NET Tutorial

Home
ASP.NET Tutorial
1.ASP.Net Instroduction
2.Language Basics
3.ASP.net Controls
4.HTML Controls
5.Page Lifecycle
6.Response
7.Collections
8.Validation
9.Development
10.File Directory
11.Sessions
12.Cookie
13.Cache
14.Custom Controls
15.Profile
16.Configuration
17.LINQ
18.ADO.net Database
19.Data Binding
20.Ajax
21.Authentication Authorization
22.I18N
23.Mobile
24.WebPart
25.XML
ASP.NET Tutorial » Cache » Introduction 
13.1.2.Basic operations executed on the ASP.NET Cache object
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" 
    Inherits="Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Testing the Cache</title>
</head>
<body>
    <div id="pageContent">
        <form id="form1" runat="server">
            <asp:Button ID="Button1" runat="server" Text="Add a new item..." OnClick="Add_Click" />
            <asp:Button ID="Button2" runat="server" Text="Read the item..." OnClick="Read_Click" />
            <asp:Button ID="Button3" runat="server" Text="Remove the item..." OnClick="Remove_Click" />
            <hr />
            <asp:Label runat="server" ID="Label1" />
        </form>
    </div>
</body>
</html>

File: Default.aspx.cs

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;


public partial class Default : System.Web.UI.Page
{
    protected void Read_Click(object sender, EventArgs e)
    {
        string msg = String.Format("{0} ({1})"
            Cache.Get("MyData")
            Cache.Get("MyData").GetType().ToString());

        Label1.Text = msg;
    }
    protected void Add_Click(object sender, EventArgs e)
    {
        Cache["MyData"= DateTime.Now;
    }
    protected void Remove_Click(object sender, EventArgs e)
    {
        object obj = Cache.Remove("MyData");
        Label1.Text = obj.GetType().ToString();
    }
}
13.1.Introduction
13.1.1.Overview of Caching
13.1.2.Basic operations executed on the ASP.NET Cache object
13.1.3.Programmatic Fragment Caching
13.1.4.Cache Object DataSource
13.1.5.Convert data in Cache to integer
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.