码迷,mamicode.com
首页 > Web开发 > 详细

缓存对象cookie对象(asp.net技术)

时间:2014-11-03 10:20:58      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:protect   asp.net   cookie   admin   public   

实现记住密码,有效期等功能.cookie.

cookie对象的expires属性和value属性.

/////////////////////////////////////////////////////////////////////////////////////////////////////

using System;

using System.Collections;

using System.Configuration;

using System.Data;

using System.Linq;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.HtmlControls;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Xml.Linq;

public partial class admin : System.Web.UI.Page

{

    protected void Page_Load(object sender, EventArgs e)

    {

        if (Session["username"] == null)

        {

            Response.Redirect("Default.aspx");

        }

        else

        {

            Response.Write("codego.net" + Session["username"] + "成功登录!");

        }

    }

}

///////////////////////////////////////////////////////////////////////////

using System;

using System.Configuration;

using System.Data;

using System.Linq;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.HtmlControls;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Xml.Linq;

public partial class _Default : System.Web.UI.Page 

{

    protected void Page_Load(object sender, EventArgs e)

    {

    }

    protected void Button2_Click(object sender, EventArgs e)

    {

        txtname.Text = "";

        txtpwd.Text = "";

    }

    protected void Button1_Click(object sender, EventArgs e)

    {

        if (txtname.Text.Trim().Equals("mr") && txtpwd.Text.Trim().Equals("mrsoft"))

        {

            Session["username"] = txtname.Text.Trim();

            if (ckbauto.Checked)

            {

                if (Request.Cookies["username"] == null)

                {

                    Response.Cookies["username"].Expires = DateTime.Now.AddDays(30);

                    Response.Cookies["userpwd"].Expires = DateTime.Now.AddDays(30);

                    Response.Cookies["username"].Value = txtname.Text.Trim();

                    Response.Cookies["userpwd"].Value = txtpwd.Text.Trim();

                }

            }

            Response.Redirect("admin.aspx");

        }

        else

        {

            ClientScript.RegisterStartupScript(this.GetType(),"","alert(‘用户名或密码错误!‘);",true);

        }

    }

    protected void txtname_TextChanged(object sender, EventArgs e)

    {

        if (Request.Cookies["username"] != null)

        {

            if (Request.Cookies["username"].Value.Equals(txtname.Text.Trim()))

            {

                txtpwd.Attributes["value"] = Request.Cookies["userpwd"].Value;

            }

        }

    }

}

本文出自 “zhutousandebokezhijia” 博客,请务必保留此出处http://9529231.blog.51cto.com/9519231/1571111

缓存对象cookie对象(asp.net技术)

标签:protect   asp.net   cookie   admin   public   

原文地址:http://9529231.blog.51cto.com/9519231/1571111

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