温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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

发布时间:2020-07-18 13:14:55 来源:网络 阅读:648 作者:woshiyipizhu 栏目:编程语言

实现记住密码,有效期等功能.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("用户" + 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;

            }

        }

    }

}

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI