時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
Cookie (HttpCookie的實例)提供了一種在 Web 應(yīng)用程序中存儲用戶特定信息的方法。例如,當(dāng)用戶訪問您的站點時,您可以使用Cookie 存儲用戶首選項或其他信息。當(dāng)該用戶再次訪問您的網(wǎng)站時,應(yīng)用程序便可以檢索以前存儲的信息。
ASP.NET中的cookie:創(chuàng)建Cookie方法 (1)
Response.Cookies["userName"].Value = "admin"; Response.Cookies["userName"].Expires = DateTime.Now.AddDays(1); //如果不設(shè)置失效時間,Cookie信息不會寫到用戶硬盤,瀏覽器關(guān)閉將會丟棄。 |
ASP.NET中的cookie:創(chuàng)建Cookie方法 (2)
HttpCookie aCookie = new HttpCookie("lastVisit"); //上一次訪問時間 aCookie.Value = DateTime.Now.ToString(); aCookie.Expires = DateTime.Now.AddDays(1); Response.Cookies.Add(aCookie); |
ASP.NET中的cookie:訪問Cookie方法(1)
if(Request.Cookies["userName"] != null) Label1.Text = Server.HtmlEncode(Request.Cookies["userName"].Value); |
訪問Cookie方法(2)
if(Request.Cookies["userName"] != null) { HttpCookie aCookie = Request.Cookies["userName"]; Label1.Text = Server.HtmlEncode(aCookie.Value); } |
ASP.NET中的cookie:創(chuàng)建多值Cookie方法 (1)
Response.Cookies["userInfo"]["userName"] = "admin"; Response.Cookies["userInfo"]["lastVisit"] = DateTime.Now.ToString(); Response.Cookies["userInfo"].Expires = DateTime.Now.AddDays(1); |
ASP.NET中的cookie:創(chuàng)建多值Cookie方法 (2)
HttpCookie aCookie = new HttpCookie("userInfo"); aCookie.Values["userName"] = "admin"; aCookie.Values["lastVisit"] = DateTime.Now.ToString(); aCookie.Expires = DateTime.Now.AddDays(1); Response.Cookies.Add(aCookie); |
ASP.NET中的cookie:讀取多值Cookie
HttpCookie aCookie = Request.Cookies["userInfo"]; string userName=aCookie.Values["userName"]; string lastVisit=aCookie.Values["lastVisit"]; |
ASP.NET中的cookie:修改和刪除Cookie
不能直接修改或刪除Cookie,只能創(chuàng)建一個新的Cookie,發(fā)送到客戶端以實現(xiàn)修改或刪除Cookie。
關(guān)鍵詞標(biāo)簽:ASP.NET
相關(guān)閱讀
熱門文章 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 鐘離圣遺物推薦-原神鐘離圣遺物詞條 解決方法:應(yīng)用程序“DEFAULT WEB SITE”中的服務(wù)器錯誤 使用aspnet_regiis.exe 重新注冊.NET Framework
人氣排行 誅仙3飛升任務(wù)怎么做-誅仙3飛升任務(wù)流程最新2022 asp.net表單提交方法GET\POST 在ASP.NET中如何判斷用戶IE瀏覽器的版本 Asp.net中messagebox的實現(xiàn)方法 Asp.net中的web.config配置 在ASP.NET MVC中實現(xiàn)大文件異步上傳 asp.net獲取URL和IP地址 FileUpload上傳多文件出現(xiàn)錯誤的解決方法