码迷,mamicode.com
首页 > 其他好文 > 详细

Cache使用

时间:2014-08-31 14:24:11      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   使用   ar   for   div   log   

Default.aspx:

<a href="Default2.aspx?id=123&type=11ad">打开第二个页面id=123</a><br>
<a href="Default2.aspx?id=12&type=11ad">打开第二个页面id=12</a>

Default2.aspx:

<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label><asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
protected void Page_Load(object sender, EventArgs e)
    {
        string type = Request.QueryString["type"].ToString();
        if (!IsPostBack)
        {
            if (Cache["" + type + ""] == null)
            {
                msg();
            }
            else
            {
                if (Cache["" + type + ""].ToString() == Request.QueryString["id"].ToString())
                {
                    Label1.Text = "我可以进入这个页面";
                }
                else
                {
                    Label1.Text = "有人已经进入该页面,请稍后。。。";
                    Button1.Visible = false;
                }
            }
        }
        
    }
    
    private void msg()
    {
        string type = Request.QueryString["type"];
        //Cache["‘" + type + "‘"] = Request.QueryString["id"].ToString();
        Cache.Insert(""+type+"", Request.QueryString["id"].ToString(), null, DateTime.Now.AddSeconds(10), TimeSpan.Zero);
        Label1.Text = "我可以进入这个页面";
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        string type = Request.QueryString["type"];
        Cache.Remove("" + type + "");
        Response.Redirect("Default.aspx");
    }

 

Cache使用

标签:style   blog   color   os   使用   ar   for   div   log   

原文地址:http://www.cnblogs.com/liuswi/p/3947604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!