zoukankan      html  css  js  c++  java
  • C# Session添加、删除封装类

        /// <summary>
        /// <para> </para>
        ///  常用工具类——Session操作类
        /// <para> ----------------------------------------------------------</para>
        /// <para> AddSession:添加Session,有效期为默认</para>
        /// <para> AddSession:添加Session,并调整有效期为分钟或几年</para>
        /// <para> GetSession:读取某个Session对象值</para>
        /// <para> DelSession:删除某个Session对象</para>
        /// </summary>
    	public class AngelSession
        {
    
            #region 添加Session,有效期为默认
            /// <summary>
            /// 添加Session,有效期为默认
            /// </summary>
            /// <param name="strSessionName">Session对象名称</param>
            /// <param name="strValue">Session值</param>
            public static void Add(string strSessionName, object objValue)
            {
                HttpContext.Current.Session[strSessionName] = objValue;
            }
            #endregion
    
            #region 添加Session,并调整有效期为分钟或几年
            /// <summary>
            /// 添加Session,并调整有效期为分钟或几年
            /// </summary>
            /// <param name="strSessionName">Session对象名称</param>
            /// <param name="strValue">Session值</param>
            /// <param name="iExpires">分钟数:大于0则以分钟数为有效期,等于0则以后面的年为有效期</param>
            /// <param name="iYear">年数:当分钟数为0时按年数为有效期,当分钟数大于0时此参数随意设置</param>
            public static void Set(string strSessionName, object objValue, int iExpires, int iYear)
            {
                HttpContext.Current.Session[strSessionName] = objValue;
                if (iExpires > 0)
                {
                    HttpContext.Current.Session.Timeout = iExpires;
                }
                else if(iYear>0)
                {
                    HttpContext.Current.Session.Timeout = 60 * 24 * 365 * iYear;
                }
            }
            #endregion
    
            #region 读取某个Session对象值
            /// <summary>
            /// 读取某个Session对象值
            /// </summary>
            /// <param name="strSessionName">Session对象名称</param>
            /// <returns>Session对象值</returns>
            public static object Get(string strSessionName)
            {
                return HttpContext.Current.Session[strSessionName];
            }
            #endregion
    
            #region 删除某个Session对象
            /// <summary>
            /// 删除某个Session对象
            /// </summary>
            /// <param name="strSessionName">Session对象名称</param>
            public static void Remove(string strSessionName)
            {
                HttpContext.Current.Session.Remove(strSessionName);
            }
            #endregion
        }
    

    分装后使用更方便快捷 

  • 相关阅读:
    delphi 多线程定时执行程序如何写
    delphi 把多个线程的请求阻塞到另一个线程 TElegantThread
    delphi 对TThread扩充TSimpleThread
    Delphi 线程Timer (TThreadTimer)
    vue-01-插值表达式、事件修饰符
    ORA-12516:监听程序找不到服务协议堆栈要求的可用处理程序(转)
    Io 异常: The Network Adapter could not establish the connection(转)
    "Cannot read property 'xxx' of undefined" js问题之某属性未定义
    数据库用日期作为条件来查询数据
    Docker Registry配置客户端
  • 原文地址:https://www.cnblogs.com/angelasp/p/4432570.html
Copyright © 2011-2022 走看看