国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

CookieHelper.cs

2019-11-14 10:58:38
字體:
來源:轉載
供稿:網友
using System;using System.Web;namespace Common{    public class CookieHelper    {        /// <summary>        /// 設置Cookie緩存        /// </summary>        /// <param name="sKey"></param>        /// <param name="sContent"></param>        /// <param name="dt"></param>        public static void CookieSet(string sKey,string sContent,DateTime dt)        {            HttpCookie myHttpCookie = new HttpCookie(sKey);            myHttpCookie.Value = sContent;            myHttpCookie.Expires = dt;            HttpContext.Current.Response.Cookies.Add(myHttpCookie);        }        /// <summary>          /// 清除指定Cookie          /// </summary>          /// <param name="sKey">cookiename</param>          public static void CookieClear(string sKey)        {            HttpCookie cookie = HttpContext.Current.Request.Cookies[sKey];            if (cookie != null)            {                cookie.Expires = DateTime.Now.AddYears(-3);                HttpContext.Current.Response.Cookies.Add(cookie);            }        }        /// <summary>          /// 獲取指定Cookie值          /// </summary>          /// <param name="sKey">cookiename</param>          /// <returns></returns>          public static string CookieGet(string sKey)        {            HttpCookie cookie = HttpContext.Current.Request.Cookies[sKey];            string str = string.Empty;            if (cookie != null)            {                str = cookie.Value;            }            return str;        }    }}
上一篇:洛谷 1372

下一篇:P1049 裝箱問題

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 大田县| 鹤壁市| 南汇区| 凌海市| 金阳县| 张家界市| 株洲市| 鸡西市| 陆丰市| 平凉市| 韶山市| 宁南县| 资阳市| 扎赉特旗| 洞口县| 郎溪县| 阳泉市| 德江县| 马龙县| 昌邑市| 武川县| 乐山市| 分宜县| 清水县| 平湖市| 惠来县| 日土县| 于田县| 扬州市| 灵丘县| 鹿泉市| 沁水县| 民丰县| 连江县| 义马市| 沁源县| 农安县| 额尔古纳市| 区。| 高邮市| 青冈县|