博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CookieHelper.cs(20170223)
阅读量:5321 次
发布时间:2019-06-14

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

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Web;namespace System.CRM.Common{    ///     /// Cookie操作助手类    ///     public class CookieHelper    {        ///         /// 设置一个Cookie(一天超时)        ///         /// Cookie的Key值        /// Cookie的Value值        public static void SetCookie(string key, string value)        {            SetCookie(HttpContext.Current.Response, key, value, DateTime.Now.AddDays(1));        }        ///         /// 设置一个Cookie        ///         /// Cookie的Key值        /// Cookie的Value值        /// Cookie的超时时间        public static void SetCookie(string key, string value, DateTime expires)        {            SetCookie(HttpContext.Current.Response, key, value, expires);        }        ///         /// 移除Cookie        ///         /// Cookie的Key值        public static void RemoveCookie(string key)        {            SetCookie(HttpContext.Current.Response, key, null, DateTime.Now.AddMinutes(-1));        }        ///         /// 获取Cookie值(查)        ///         /// Cookie的Key值        /// 
Cookie的Value值
public static string GetCookie(string key) { return GetCookie(HttpContext.Current.Request, key); } /// /// 设置一个Cookie(增删改) /// /// 当前 HTTP 响应的 System.Web.HttpResponse 对象 /// Cookie的Key值 /// Cookie的Value值 /// Cookie的超时时间 private static void SetCookie(HttpResponse response, string key, string value, DateTime expires) { HttpCookie cookie = new HttpCookie(key) { Value = value, Expires = expires }; response.Cookies.Add(cookie); } /// /// 获取Cookie值(查) /// /// 当前 HTTP 请求的 System.Web.HttpRequest 对象 /// Cookie的Key值 ///
Cookie的Value值
private static string GetCookie(HttpRequest request, string key) { HttpCookie cookie = request.Cookies[key]; return cookie != null ? cookie.Value : null; } }}

 

转载于:https://www.cnblogs.com/zyx321/p/6435898.html

你可能感兴趣的文章
ajax 请求发出了,数据更改了,但是没进入success 函数 把success 换成 complete...
查看>>
web前端开发知识点较高质量的网站
查看>>
2018寒假作业_3(电梯版本二)
查看>>
sql复杂查询
查看>>
修改mysql5.7的错误日志级别
查看>>
UVA - 839 Not so Mobile
查看>>
Python考试_第一次
查看>>
[Jquery 插件]活动倒计时,可同步服务器时间,倒计时格式随意设置
查看>>
【財務会計】償却 とは
查看>>
es5和es6对象导出与导入
查看>>
关于timestamp的自动更新
查看>>
【ASP.NET MVC系列】浅谈jqGrid 在ASP.NET MVC中增删改查
查看>>
自制MVC框架的插件与拦截器基础
查看>>
hiho13周暴力求lca
查看>>
poj3311Hie with the Pie状压dp
查看>>
Gvim 配置
查看>>
7-7
查看>>
使用JS分页 <span> beta 2.0 未封装的分页
查看>>
h5-18-文件上传
查看>>
windows虚拟内存(win32)
查看>>