zoukankan      html  css  js  c++  java
  • c# cookie帮助类

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Web;
    
    namespace Maticsoft.DBUtility
    {
        public class CookieHelper
        {
            /// <summary>
            /// 设置cookie
            /// </summary>
            /// <param name="name"></param>
            /// <param name="value"></param>
            /// <param name="day"></param>
            /// <returns></returns>
            public static bool setCookie(string name, string value, int day)
            {
                try
                {
                    HttpCookie cookie = new HttpCookie(name);
                    cookie.Expires = DateTime.Now.AddDays(day);
                    cookie.Value = value;
                    HttpContext.Current.Response.Cookies.Add(cookie);
                    return true;
                }
                catch (Exception)
                {
                    return false;
                }
            }
            /// <summary>
            /// 获取cookie
            /// </summary>
            /// <param name="name"></param>
            /// <returns></returns>
            public static string getCookie(string name)
            {
                HttpCookie cookie = HttpContext.Current.Request.Cookies[name];
                if (cookie != null)
                {
                    return cookie.Value.ToString();
                }
                return null;
            }
            /// <summary>
            /// 删除cookie
            /// </summary>
            /// <param name="name"></param>
            /// <returns></returns>
            public static bool delCookie(string name)
            {
                try
                {
                    HttpCookie cookie = new HttpCookie(name);
                    cookie.Expires = DateTime.Now.AddDays(-1);
                    HttpContext.Current.Response.Cookies.Add(cookie);
                    return true;
                }
                catch (Exception)
                {
                    return false;
                }
            }
        }
    }
    

      

  • 相关阅读:
    Solr 删除数据的几种方式
    velocity 随笔
    LOG4J.PROPERTIES配置详解(转载)
    转 如何使用velocity模板引擎开发网站
    通过pinyin4j将汉字转换为全拼 和 拼音首字母
    去除数组中的重复数据
    java 转义字符
    多重背包(学习笔记)
    Team Queue
    [HAOI2008]糖果传递
  • 原文地址:https://www.cnblogs.com/yang-2018/p/9996377.html
Copyright © 2011-2022 走看看