博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cookie操作
阅读量:4958 次
发布时间:2019-06-12

本文共 1283 字,大约阅读时间需要 4 分钟。

1、写cookie方法

#region 登录时写入cookie    public static void LoginCookieSave(string uid, string loginname, string pwd)    {        System.Web.HttpCookie logincookie = new System.Web.HttpCookie("userinfo");        logincookie.Values.Add("uid", uid);        logincookie.Values.Add("loginname", ICore.IChecking.Escape(loginname));        logincookie.Values.Add("pwd", pwd);        logincookie.Expires = DateTime.Now.AddMonths(12);        logincookie.Domain = "domain.com";        HttpContext.Current.Response.AppendCookie(logincookie);    }    #endregion

2、读取cookie方法

///     /// 获得Cookie的值    ///     ///     ///     /// 
public static string GetCookieValue(string cookieName, string key) { HttpRequest request = HttpContext.Current.Request; if (request != null) return GetCookieValue(request.Cookies[cookieName], key); return ""; } /// /// 获得Cookie的子键值 /// /// /// ///
public static string GetCookieValue(HttpCookie cookie, string key) { if (cookie != null) { if (!string.IsNullOrEmpty(key) && cookie.HasKeys) return cookie.Values[key]; else return cookie.Value; } return ""; }

 

转载于:https://www.cnblogs.com/mingjia/p/5302936.html

你可能感兴趣的文章
【NOIP模拟赛】异象石
查看>>
对象数组
查看>>
三元表达,匿名函数
查看>>
前端笔记-基础笔记
查看>>
【LeetCode & 剑指offer刷题】查找与排序题6:33. Search in Rotated Sorted Array(系列)
查看>>
GNU/Linux超级本ZaReason Ultralap 440体验
查看>>
icpc 南昌邀请赛网络赛 Max answer
查看>>
将github上托管的代码 在我的域名下运行
查看>>
【Manthan, Codefest 18 (rated, Div. 1 + Div. 2) C】Equalize
查看>>
【codeforces 767A】Snacktower
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
我最喜欢的 5 个 Gedit 插件
查看>>
OOoLatex:在 OpenOffice.org 中拔出 Latex 公式
查看>>
linu学习第二天:文件系统相关操作
查看>>
执行了的程序,才是你的程序.
查看>>
国内使用Google Maps JavaScript API
查看>>
Linux学习笔记之RedHat Enterprise Linux 6.4 使用 Centos 6 的yum源问题
查看>>
手机之间的“间谍战”-巧用“蓝牙间谍”遥控远程手机
查看>>