(一)
后台C#代码对cookie的操作:
看一下代码
-
-
-
Guid gu_id = Guid.NewGuid();
-
HttpCookie cookie = new HttpCookie("name1");
-
DateTime dt = DateTime.Now;
-
TimeSpan ts = new TimeSpan(0, 0, 0, 20, 0);
-
cookie.Expires = dt.Add(ts);
-
cookie.Value = gu_id.ToString();
-
Response.AppendCookie(cookie);
-
-
-
-
-
-
-
if (Request.Cookies["name1"] != null)
-
-
Response.Write(Request.Cookies["name1"].Value+"<br/>");
-
-
-
-
-
if(Request.Cookies["name1"]!=null)
-
-
Request.Cookies["name1"].Value = Guid.NewGuid().ToString();
-
Response.Write(Request.Cookies["name1"].Value);
-
以上代码:两次读取同一个cookie,其值分别为:
0de2084e-75f3-4427-9e6f-8f0b5c446847 c2f1afa0-c1e0-41aa-a29b-cb6519524e9e
删除cookie的方法:
-
-
-
-
-
public void clearCookies(string key) {
-
HttpCookie cook = new HttpCookie(key);
-
cook.Expires = DateTime.Now.AddDays(-1);
-
-
System.Web.HttpContext.Current.Response.Cookies.Set(cook);
-
(二)
再看一下前台js(jquery)对cookie的操作,引入cookie的jquery插件jquery.cookies.js
对cookies的操作在当访问一个网站就无时无刻的都伴随着我们,记录着我们的一举一动,并将不危害用户隐私的信息,将以保存,这样用户就不用去从新再次操作重复的步骤,这样大大方便了客户,也增加了客户对网站的回头率。
jquery.cookie.js 提供了jquery中非常简单的操作cookie的方法。
- $.cookie('the_cookie'); // 获得cookie
- $.cookie('the_cookie', 'the_value'); // 设置cookie
- $.cookie('the_cookie', 'the_value', { expires: 7 }); //设置带时间的cookie,默认情况是按天计算的
- $.cookie('the_cookie', '', { expires: -1 }); // 删除
- $.cookie('the_cookie', null); // 删除 cookie
- $.cookie('the_cookie', 'the_value', {expires: 7, path: '/', domain: 'jquery.com', secure: true});//新建一个cookie 包括有效期 路径 域名等
前辈经验
|
请发表评论