91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

緩存對象cookie對象(asp.net技術)

發布時間:2020-07-18 13:14:55 來源:網絡 閱讀:651 作者: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

扎赉特旗| 晴隆县| 侯马市| 华安县| 司法| 贵溪市| 古蔺县| 芮城县| 白银市| 姜堰市| 乐亭县| 三门峡市| 思南县| 罗甸县| 诸城市| 扶沟县| 乾安县| 沁源县| 子长县| 利辛县| 怀仁县| 桂林市| 桦南县| 年辖:市辖区| 山东省| 吉林省| 石首市| 财经| 获嘉县| 静宁县| 南投县| 襄垣县| 通州市| 通化市| 青州市| 宜春市| 麻城市| 太湖县| 景德镇市| 濉溪县| 昌邑市|