当前位置导航:炫浪网>>网络学院>>网页制作>>ASP.NET教程

ASP.NET中的cookie读写方法介绍

Cookie (HttpCookie的实例)提供了一种在 Web 应用程序中存储用户特定信息的方法。例如,当用户访问您的站点时,您可以使用Cookie 存储用户首选项或其他信息。当该用户再次访问您的网站时,应用程序便可以检索以前存储的信息。

ASP.NET中的cookie:创建Cookie方法 (1)

  1. Response.Cookies["userName"].Value = “admin";  
  2. Response.Cookies[“userName”].Expires = DateTime.Now.AddDays(1);  

//如果不设置失效时间,Cookie信息不会写到用户硬盘,浏览器关闭将会丢弃。

ASP.NET中的cookie:创建Cookie方法 (2)

  1. HttpCookie aCookie = new HttpCookie(“lastVisit”); //上一次访问时间  
  2. aCookie.Value = DateTime.Now.ToString();   
  3. aCookie.Expires = DateTime.Now.AddDays(1);  
  4. Response.Cookies.Add(aCookie);  

ASP.NET中的cookie:访问Cookie方法(1)

  1. if(Request.Cookies["userName"] != null)  
  2. Label1.Text = Server.HtmlEncode(Request.Cookies["userName"].Value);访问Cookie方法(2)  
  3. if(Request.Cookies["userName"] != null)   
  4. {   
  5. HttpCookie aCookie = Request.Cookies["userName"];   
  6. Label1.Text = Server.HtmlEncode(aCookie.Value);   
  7. }  

ASP.NET中的cookie:创建多值Cookie方法 (1)

  1. Response.Cookies["userInfo"]["userName"] = “admin";   
  2. Response.Cookies["userInfo"]["lastVisit"] = DateTime.Now.ToString();   
  3. Response.Cookies["userInfo"].Expires = DateTime.Now.AddDays(1); 

ASP.NET中的cookie:创建多值Cookie方法 (2)

  1. HttpCookie aCookie = new HttpCookie("userInfo");   
  2. aCookie.Values["userName"] = “admin";   
  3. aCookie.Values["lastVisit"] = DateTime.Now.ToString();   
  4. aCookie.Expires = DateTime.Now.AddDays(1);   
  5. Response.Cookies.Add(aCookie);  

ASP.NET中的cookie:读取多值Cookie

  1. HttpCookie aCookie = Request.Cookies["userInfo"];   
  2. string userName=aCookie.Values[“userName”];  
  3. string lastVisit=aCookie.Values[“lastVisit”];  

ASP.NET中的cookie:修改和删除Cookie

不能直接修改或删除Cookie,只能创建一个新的Cookie,发送到客户端以实现修改或删除Cookie.

相关内容
赞助商链接