文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>.net cookie

.net cookie

时间:2010-12-15  来源:卑鄙De小贝

1,是临时cookie(关闭浏览器就丢失)

 

代码
HttpCookie mycookie = new HttpCookie("username");
mycookie.Value
= Request.Cookies["username"].Value.ToString();
mycookie.Domain
= "xxx.xxx.com";
Response.Cookies.Add(mycookie);

 

 

2,是定制了时间的cookie(你懂的~哈哈!)

 

代码
HttpCookie mycookie = new HttpCookie("username");
mycookie.Value
= Request.Cookies["username"].Value.ToString();
mycookie.Domain
= "xxx.xxx.com";
mycookie.Expires
= DateTime.Now.AddDays(1);
Response.Cookies.Add(mycookie);

 

分别就是你是否有定制时间

 

相关阅读 更多 +
排行榜 更多 +
方块枪战战场安卓版

方块枪战战场安卓版

飞行射击 下载
战斗火力射击安卓版

战斗火力射击安卓版

飞行射击 下载
空中防御战安卓版

空中防御战安卓版

飞行射击 下载