码迷,mamicode.com
首页 > Windows程序 > 详细

C# Session的生命周期问题

时间:2015-04-08 12:38:43      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:

        /// <summary>
        /// 设置session
        /// </summary>
        /// <param name="name">session 名</param>
        /// <param name="val">session 值</param>
        public static void SetSession(string name, object val)
        {
            HttpContext.Current.Session.Remove(name);
            HttpContext.Current.Session.Add(name, val);
            HttpContext.Current.Session.Timeout = 1440;
        }
        /// <summary>
        /// 添加Session,调动有效期为1440分钟
        /// </summary>
        /// <param name="strSessionName">Session对象名称</param>
        /// <param name="strValue">Session值</param>
        public static void Add(string strSessionName, string strValue)
        {
            HttpContext.Current.Session[strSessionName] = strValue;
            HttpContext.Current.Session.Timeout = 1440;
        }

        /// <summary>
        /// 添加Session,调动有效期为1440分钟
        /// </summary>
        /// <param name="strSessionName">Session对象名称</param>
        /// <param name="strValues">Session值数组</param>
        public static void Adds(string strSessionName, string[] strValues)
        {
            HttpContext.Current.Session[strSessionName] = strValues;
            HttpContext.Current.Session.Timeout = 1440;
        }

 

C# Session的生命周期问题

标签:

原文地址:http://www.cnblogs.com/bmbh/p/4374468.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!