cookie 儲存使用者名稱密碼

來源:互聯網
上載者:User

注意:input密碼控制項是無法賦值的<input id="TxtPwd" runat="server"  type="password" style="width: 110px" />  

不過textbox密碼空間可以賦值<asp:TextBox ID="TxtPwd" runat="server" TextMode="Password"></asp:TextBox>

賦值方法:this.TxtPwd.Attributes.Add("value", “密碼");或者this.TxtPwd.Attributes["value"] = "密碼";

 

 

 

   /// <summary>
    /// 儲存使用者名稱密碼
    /// </summary>
    [AjaxPro.AjaxMethod]
    public void SetCookies(string userName, string userPwd)
    {
        HttpResponse response = HttpContext.Current.Response;
        if (response != null)
        {
            HttpCookie cookie = response.Cookies["userInfo"];
            if (cookie != null)
            {
                cookie.Values.Set("userName", userName);
                cookie.Values.Set("userPwd", userPwd);
                cookie.Values.Set("check", "1");
                cookie.Expires = DateTime.Now.AddDays(365);
                response.SetCookie(cookie);
            }
        }

    }
    /// <summary>
    /// 刪除cookie
    /// </summary>
    [AjaxPro.AjaxMethod]
    public void DelCookies()
    {
        HttpRequest request = HttpContext.Current.Request;//先擷取修改
        if (request != null)
        {
            HttpCookie cookie = request.Cookies["userInfo"];
            if (cookie != null)
            {
                cookie.Values.Remove("userPwd");
                cookie.Values.Remove("check");
                cookie.Expires = DateTime.Now.AddDays(365);//此設定不可或缺,否則無法儲存cookie
            }
            HttpResponse response = HttpContext.Current.Response;//然後儲存
            response.SetCookie(cookie);
        }
    }
    /// <summary>
    /// 擷取並顯示使用者名稱密碼
    /// </summary>
    private void Getcookie()
    {
        HttpRequest request = HttpContext.Current.Request;
        if (request != null)
        {
            HttpCookie cookie = request.Cookies["userInfo"];
            if (cookie != null)
            {
                this.TxtName.Attributes.Add("value", cookie["userName"]);
                this.TxtPwd.Attributes.Add("value", cookie["userPwd"]);

                string check = cookie["check"];
                if (check == "1")
                    this.rmbPass.Checked = true;
                else
                    this.rmbPass.Checked = false;
            }
        }
    }

 

 

 

 

 

 

js重新整理頁面window.location.reload();

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.