91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

一個隊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

海林市| 金山区| 日土县| 江山市| 华池县| 阜宁县| 康平县| 松桃| 台南市| 麻阳| 象州县| 吐鲁番市| 囊谦县| 汤原县| 久治县| 内黄县| 延川县| 武威市| 西青区| 拉孜县| 崇信县| 兰坪| 读书| 庆元县| 额尔古纳市| 襄汾县| 车致| 华亭县| 西盟| 墨竹工卡县| 镇原县| 雅安市| 宜阳县| 行唐县| 靖西县| 砀山县| 台江县| 铁力市| 焦作市| 酒泉市| 镇赉县|