文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
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);

 

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

 

相关阅读 更多 +
排行榜 更多 +
炮弹比赛

炮弹比赛

飞行射击 下载
射击猎人枪杀手

射击猎人枪杀手

飞行射击 下载
天空之战在线

天空之战在线

飞行射击 下载