博客
关于我
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/

你可能感兴趣的文章
mysql5.7命令总结
查看>>
mysql5.7安装
查看>>
mysql5.7性能调优my.ini
查看>>
MySQL5.7新增Performance Schema表
查看>>
Mysql5.7深入学习 1.MySQL 5.7 中的新增功能
查看>>
Webpack 之 basic chunk graph
查看>>
Mysql5.7版本单机版my.cnf配置文件
查看>>
mysql5.7的安装和Navicat的安装
查看>>
mysql5.7示例数据库_Linux MySQL5.7多实例数据库配置
查看>>
Mysql8 数据库安装及主从配置 | Spring Cloud 2
查看>>
mysql8 配置文件配置group 问题 sql语句group不能使用报错解决 mysql8.X版本的my.cnf配置文件 my.cnf文件 能够使用的my.cnf配置文件
查看>>
MySQL8.0.29启动报错Different lower_case_table_names settings for server (‘0‘) and data dictionary (‘1‘)
查看>>
MYSQL8.0以上忘记root密码
查看>>
Mysql8.0以上重置初始密码的方法
查看>>
mysql8.0新特性-自增变量的持久化
查看>>
Mysql8.0注意url变更写法
查看>>
Mysql8.0的特性
查看>>
MySQL8修改密码报错ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
查看>>
MySQL8修改密码的方法
查看>>
Mysql8在Centos上安装后忘记root密码如何重新设置
查看>>