博客
关于我
common -- CookiesHelper
阅读量:295 次
发布时间:2019-03-01

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

/*----------------------------------------------------------------// Copyright (C) 2010 *****
// 版权所有。 //// 文件名:CookiesHelper.cs// 文件功能描述:Cookies处理类//// // 创建标识:******//// 修改标识:// 修改描述://// 修改标识:// 修改描述://----------------------------------------------------------------*/using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;namespace *****TOOLS{    public class CookiesHelper    {        #region 获取Cookie        ///         /// 获得Cookie的值        ///         ///         /// 
public static string GetCookieValue(string cookieName) { return GetCookieValue(cookieName, null); } /// /// 获得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 ""; } /// /// 获得Cookie /// /// ///
public static HttpCookie GetCookie(string cookieName) { HttpRequest request = HttpContext.Current.Request; if (request != null) return request.Cookies[cookieName]; return null; } #endregion #region 删除Cookie /// /// 删除Cookie /// /// public static void RemoveCookie(string cookieName) { RemoveCookie(cookieName, null); } /// /// 删除Cookie的子键 /// /// /// public static void RemoveCookie(string cookieName, string key) { HttpResponse response = HttpContext.Current.Response; if (response != null) { HttpCookie cookie = response.Cookies[cookieName]; if (cookie != null) { if (!string.IsNullOrEmpty(key) && cookie.HasKeys) cookie.Values.Remove(key); else response.Cookies.Remove(cookieName); } } } #endregion #region 设置/修改Cookie /// /// 设置Cookie子键的值 /// /// /// /// public static void SetCookie(string cookieName, string key, string value) { SetCookie(cookieName, key, value, null); } /// /// 设置Cookie值 /// /// /// public static void SetCookie(string key, string value) { SetCookie(key, null, value, null); } /// /// 设置Cookie值和过期时间 /// /// /// /// public static void SetCookie(string key, string value, DateTime expires) { SetCookie(key, null, value, expires); } /// /// 设置Cookie过期时间 /// /// /// public static void SetCookie(string cookieName, DateTime expires) { SetCookie(cookieName, null, null, expires); } /// /// 设置Cookie /// /// /// /// /// public static void SetCookie(string cookieName, string key, string value, DateTime? expires) { HttpResponse response = HttpContext.Current.Response; if (response != null) { HttpCookie cookie = response.Cookies[cookieName]; if (cookie != null) { if (!string.IsNullOrEmpty(key) && cookie.HasKeys) cookie.Values.Set(key, value); else if (!string.IsNullOrEmpty(value)) cookie.Value = value; if (expires != null) cookie.Expires = expires.Value; response.SetCookie(cookie); } } } #endregion #region 添加Cookie /// /// 添加Cookie /// /// /// public static void AddCookie(string key, string value) { AddCookie(new HttpCookie(key, value)); } /// /// 添加Cookie /// /// /// /// public static void AddCookie(string key, string value, DateTime expires) { HttpCookie cookie = new HttpCookie(key, value); cookie.Expires = expires; AddCookie(cookie); } /// /// 添加为Cookie.Values集合 /// /// /// /// public static void AddCookie(string cookieName, string key, string value) { HttpCookie cookie = new HttpCookie(cookieName); cookie.Values.Add(key, value); AddCookie(cookie); } /// /// 添加为Cookie集合 /// /// Cookie名称 /// 过期时间 public static void AddCookie(string cookieName, DateTime expires) { HttpCookie cookie = new HttpCookie(cookieName); cookie.Expires = expires; AddCookie(cookie); } /// /// 添加为Cookie.Values集合 /// /// /// /// /// public static void AddCookie(string cookieName, string key, string value, DateTime expires) { HttpCookie cookie = new HttpCookie(cookieName); cookie.Expires = expires; cookie.Values.Add(key, value); AddCookie(cookie); } /// /// 添加Cookie /// /// public static void AddCookie(HttpCookie cookie) { HttpResponse response = HttpContext.Current.Response; if (response != null) { //指定客户端脚本是否可以访问[默认为false] cookie.HttpOnly = true; //指定统一的Path,比便能通存通取 cookie.Path = "/"; //设置跨域,这样在其它二级域名下就都可以访问到了 //cookie.Domain = "chinesecoo.com"; response.AppendCookie(cookie); } } #endregion }}

 

转载地址:http://pzko.baihongyu.com/

你可能感兴趣的文章
MySQL 证明为什么用limit时,offset很大会影响性能
查看>>
Mysql 语句操作索引SQL语句
查看>>
MySQL 误操作后数据恢复(update,delete忘加where条件)
查看>>
MySQL 调优/优化的 101 个建议!
查看>>
mysql 转义字符用法_MySql 转义字符的使用说明
查看>>
mysql 输入密码秒退
查看>>
mysql 递归查找父节点_MySQL递归查询树状表的子节点、父节点具体实现
查看>>
mysql 通过查看mysql 配置参数、状态来优化你的mysql
查看>>
mysql 里对root及普通用户赋权及更改密码的一些命令
查看>>
Mysql 重置自增列的开始序号
查看>>
mysql 锁机制 mvcc_Mysql性能优化-事务、锁和MVCC
查看>>
MySQL 错误
查看>>
mysql 随机数 rand使用
查看>>
MySQL 面试题汇总
查看>>
MySQL 面试,必须掌握的 8 大核心点
查看>>
MySQL 高可用性之keepalived+mysql双主
查看>>
MySQL 高性能优化规范建议
查看>>
mysql 默认事务隔离级别下锁分析
查看>>
Mysql--逻辑架构
查看>>
MySql-2019-4-21-复习
查看>>