zoukankan      html  css  js  c++  java
  • Cookie帮助类

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.IO;
    using System.Runtime.Serialization;
    using System.Runtime.Serialization.Formatters.Binary;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.HtmlControls;
    using System.Web.UI.WebControls;
    using System.Data;
    using System.Configuration;
    namespace Bll
    {
        /// <summary> 
        /// Cookie操作类 
        /// </summary> 
        public class CookieHelper
        {
            #region 保存Cookie
            /// <summary> 
            /// 保存Cookie 
            /// </summary> 
            /// <param name="CookieName">Cookie名称</param> 
            /// <param name="CookieValue">Cookie值</param> 
            /// <param name="CookieTime">Cookie过期时间(小时),0为关闭页面失效</param> 
            public static void SaveCookie(string CookieName, object CookieValue, double CookieTime)
            {
                HttpCookie myCookie = new HttpCookie(CookieName);
                DateTime now = DateTime.Now;
                myCookie.Value = ConvertObjectToString(CookieValue);
                if (CookieTime != 0)
                    myCookie.Expires = now.AddHours(CookieTime);
                if (HttpContext.Current.Response.Cookies[CookieName] != null)
                    HttpContext.Current.Response.Cookies.Remove(CookieName);
                HttpContext.Current.Response.Cookies.Add(myCookie);
            }
            private static string ConvertObjectToString(object CookieValue)
            {
                BinaryFormatter bf = new BinaryFormatter();
                MemoryStream ms = new MemoryStream();
                bf.Serialize(ms, CookieValue);
                byte[] result = new byte[ms.Length];
                result = ms.ToArray();
                string temp = System.Convert.ToBase64String(result);
                ms.Flush();
                ms.Close();
                return temp;
            }
            #endregion
            #region 取得Cookie
            /// <summary> 
            /// 取得Cookie 
            /// </summary> 
            /// <param name="CookieName">Cookie名称</param> 
            /// <returns>Cookie的值</returns> 
            public static object GetCookie(string CookieName)
            {
                HttpCookie myCookie = new HttpCookie(CookieName);
                myCookie = HttpContext.Current.Request.Cookies[CookieName];
                if (myCookie != null)
                    return ConvertStringToObject(myCookie.Value);
                else
                    return null;
            }
            private static object ConvertStringToObject(string value)
            {
                byte[] b = System.Convert.FromBase64String(value);
                MemoryStream ms = new MemoryStream(b, 0, b.Length);
                BinaryFormatter bf = new BinaryFormatter();
                return bf.Deserialize(ms);
            }
            #endregion
            #region 清除Cookie
            /// <summary> 
            /// 清除Cookie
            /// </summary> 
            /// <param name="CookieName">Cookie名称</param> 
            public static void ClearCookie(string CookieName)
            {
                HttpCookie myCookie = new HttpCookie(CookieName);
                DateTime now = DateTime.Now;
                myCookie.Expires = now.AddYears(-2);
                HttpContext.Current.Response.Cookies.Add(myCookie);
            }
            #endregion
        }
    }
  • 相关阅读:
    需要登陆网站后才能获取数据的页面爬取
    PTA中提交Python3程序的一些套路
    PAT 甲级 1014 Waiting in Line (30 分)(queue的使用,模拟题,有个大坑)
    PAT 甲级 1013 Battle Over Cities (25 分)(图的遍历,统计强连通分量个数,bfs,一遍就ac啦)
    PAT 甲级 1012 The Best Rank (25 分)(结构体排序)
    anconda + python 3.6安装(以前的anconda,anaconda和python版本对应关系)
    数学建模python matlab 编程(喷泉模拟)
    数学建模python matlab 编程(疾病传播模型)
    scikit-learn机器学习(四)使用决策树做分类,并画出决策树,随机森林对比
    scikit-learn机器学习(四)使用决策树做分类
  • 原文地址:https://www.cnblogs.com/wander1128/p/2524654.html
Copyright © 2011-2022 走看看