本文來(lái)學(xué)習(xí)一下如何在asp.net中用cookie保存用戶的帳戶密碼實(shí)現(xiàn)自動(dòng)登錄的功能,強(qiáng)調(diào)一下,cookie在客戶端保存,是不安全的,推薦使用md5加密保存。
asp.net 中,使用cookie保存賬號(hào)密碼、自動(dòng)登錄……
創(chuàng)建cookie
//向客戶端寫入Cookie
HttpCookie hcUserName1 = new HttpCookie("uname"); // 創(chuàng)建一個(gè)名為uname的cookie
hcUserName1.Expires = DateTime.Now.AddDays(7); // 設(shè)置該cookie的有效時(shí)間
hcUserName1.Value = uname; // 給cookie賦值(也就是你想保存的賬號(hào),或者密碼)
HttpContext.Current.Response.Cookies.Add(hcUserName1); // 提交cookie
提取cookie
if (HttpContext.Current.Request.Cookies["uname"] != null) // 如果這個(gè)uname cookie 不為空
string uname = HttpContext.Current.Request.Cookies["uname"].Value.ToString(); // 提取cookie
銷毀cookie
// 把cookie的時(shí)間設(shè)置為 -1 ,即cookie過(guò)期、銷毀
HttpContext.Current.Response.Cookies["uname"].Expires = DateTime.Now.AddSeconds(-1);
更多信息請(qǐng)查看IT技術(shù)專欄