下面是代码大家看一下
这个类主要是关于Session的基本操作
比如:1.获取Session值2.设置一个Session的值3.清空所有的Session4.删除一个Session5.删除所有的Session等具体代码如下所示
////// 联系方式:361983679 /// 更新网站:[url=http://www.cckan.net/thread-655-1-1.html]http://www.cckan.net/thread-655-1-1.html[/url]/// using System.Web; namespace DotNet.Utilities{ ////// Session 操作类 /// 1、GetSession(string name)根据session名获取session对象 /// 2、SetSession(string name, object val)设置session /// public class SessionHelper { ////// 根据session名获取session对象 /// /// ///public static object GetSession(string name) { return HttpContext.Current.Session[name]; } /// /// 设置session /// /// session 名 /// session 值 public static void SetSession(string name, object val) { HttpContext.Current.Session.Remove(name); HttpContext.Current.Session.Add(name, val); } ////// 清空所有的Session /// ///public static void ClearSession() { HttpContext.Current.Session.Clear(); } /// /// 删除一个指定的ession /// /// Session名称 ///public static void RemoveSession(string name) { HttpContext.Current.Session.Remove(name); } /// /// 删除所有的ession /// ///public static void RemoveAllSession(string name) { HttpContext.Current.Session.RemoveAll(); } }}