中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

一個隊asp.net session進行了再次封裝的C#類的代碼

發布時間:2020-07-22 05:29:51 來源:網絡 閱讀:416 作者:Ilovejcode 欄目:編程語言

將寫內容過程經常用到的內容片段做個收藏,下邊內容段是關于一個隊asp.net session進行了再次封裝的C#類的內容。


using System.Web;

namespace DotNet.Utilities
{
    public static class SessionHelper2
    {
        public static void Add(string strSessionName, string strValue)
        {
            HttpContext.Current.Session[strSessionName] = strValue;
            HttpContext.Current.Session.Timeout = 20;
        }

        public static void Adds(string strSessionName, string[] strValues)
        {
            HttpContext.Current.Session[strSessionName] = strValues;
            HttpContext.Current.Session.Timeout = 20;
        }

        public static void Add(string strSessionName, string strValue, int iExpires)
        {
            HttpContext.Current.Session[strSessionName] = strValue;
            HttpContext.Current.Session.Timeout = iExpires;
        }

        public static void Adds(string strSessionName, string[] strValues, int iExpires)
        {
            HttpContext.Current.Session[strSessionName] = strValues;
            HttpContext.Current.Session.Timeout = iExpires;
        }

        public static string Get(string strSessionName)
        {
            if (HttpContext.Current.Session[strSessionName] == null)
            {
                return null;
            }
            else
            {
                return HttpContext.Current.Session[strSessionName].ToString();
            }
        }

        public static string[] Gets(string strSessionName)
        {
            if (HttpContext.Current.Session[strSessionName] == null)
            {
                return null;
            }
            else
            {
                return (string[])HttpContext.Current.Session[strSessionName];
            }
        }

        public static void Del(string strSessionName)
        {
            HttpContext.Current.Session[strSessionName] = null;
        }
    }
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洛宁县| 河东区| 永宁县| 启东市| 个旧市| 刚察县| 大丰市| 临西县| 舒兰市| 那曲县| 保靖县| 抚州市| 沙田区| 胶州市| 滦平县| 重庆市| 保靖县| 托克逊县| 明光市| 内丘县| 兰考县| 芦溪县| 峨山| 江都市| 陆川县| 平南县| 鹤峰县| 福鼎市| 车险| 固始县| 凤山县| 绍兴县| 吴旗县| 南康市| 浦江县| 甘谷县| 崇明县| 阳新县| 蓬莱市| 章丘市| 安陆市|