asp.net用cookie儲存使用者密碼自動登入

來源:互聯網
上載者:User

asp.net 中,使用cookie儲存帳號密碼、自動登入……

建立cookie

//向用戶端寫入Cookie
HttpCookie hcUserName1 = new HttpCookie("uname"); // 建立一個名為uname的cookie
hcUserName1.Expires = DateTime.Now.AddDays(7); // 設定該cookie的有效時間
hcUserName1.Value = uname; // 給cookie賦值(也就是你想儲存的帳號,或者密碼)
HttpContext.Current.Response.Cookies.Add(hcUserName1); // 提交cookie

 

提取cookie

if (HttpContext.Current.Request.Cookies["uname"] != null) // 如果這個uname cookie 不為空白
string uname = HttpContext.Current.Request.Cookies["uname"].Value.ToString(); // 提取cookie

 

銷毀cookie

// 把cookie的時間設定為 -1 ,即cookie到期、銷毀
HttpContext.Current.Response.Cookies["uname"].Expires = DateTime.Now.AddSeconds(-1);

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.