博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一个队asp.net session进行了再次封装的C#类的代码
阅读量:6632 次
发布时间:2019-06-25

本文共 1847 字,大约阅读时间需要 6 分钟。

将写内容过程经常用到的内容片段做个收藏,下边内容段是关于一个队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;        }    }}

转载于:https://blog.51cto.com/14137494/2331872

你可能感兴趣的文章
php开发之LNMP环境搭建(PHP7+phalcon3)
查看>>
windows Server2012 IIS8.0配置安装完整教程
查看>>
Cap28_项目管理过程实践和案例分析
查看>>
杭电2037(今年暑假不AC)
查看>>
关于 package.json 和 package-lock.json 文件说明
查看>>
设置Cookie
查看>>
zookeeper 随记
查看>>
linux查看磁盘系统df,du
查看>>
JavaScript reduce() 方法
查看>>
80386寄存器简介
查看>>
TextRank算法提取关键词的Java实现
查看>>
我是一只草泥马
查看>>
ZOJ - 2112 Dynamic Rankings(BIT套主席树)
查看>>
c# 6.0 学习笔记
查看>>
svn冲突解决
查看>>
Mutations
查看>>
springmvc(3)注解
查看>>
TCP通信详解
查看>>
JavaWeb面试题 有用
查看>>
案例34:火灾自动报警设施检测与验收案例分析(一)
查看>>