国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#程序中session的基本設置示例及清除session的方法

2020-01-24 01:12:56
字體:
來源:轉載
供稿:網友

session的基本設置:

using System;using System.Collections.Generic;using System.Text;using System.Web;using System.Web.SessionState;namespace OAFrameWork{  public class CSession  {      public static object Get(string Key)    {      return HttpContext.Current.Session[Key];    }  public static string GetString(string Key)    {      object obj = HttpContext.Current.Session[Key];      if (obj == null) return "";      else return obj.ToString();    }    public static object Get(string Key,object DefaultValue)    {      if (HttpContext.Current.Session[Key] == null)        return DefaultValue;      else        return HttpContext.Current.Session[Key];    }    public static object Get(string Key, object DefaultValue,Boolean CanAdd)    {      if (HttpContext.Current.Session[Key] == null)      {        if(CanAdd==true)          HttpContext.Current.Session.Add(Key, DefaultValue);        return DefaultValue;      }      else        return HttpContext.Current.Session[Key];    }    public static Boolean Set(string Key,object Value)    {      try      {        if (Value == null && HttpContext.Current.Session[Key] != null)        {          HttpContext.Current.Session.Remove(Key);        }        else if (HttpContext.Current.Session[Key] == null)          {            HttpContext.Current.Session.Add(Key, Value);          }          else          {            HttpContext.Current.Session[Key] = Value;          }        return true;      }      catch (Exception ex)      {        CMsgBox.Show(ex.Message);         return false;      }    }             }}

清除Session:

Session.Abandon();//清除全部Session//清除某個SessionSession["UserName"] = null;Session.Remove("UserName");

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 隆尧县| 九江市| 郴州市| 蒲城县| 昌黎县| 宾川县| 惠东县| 土默特左旗| 临泉县| 绵阳市| 扎兰屯市| 淮南市| 砚山县| 鸡西市| 罗江县| 保德县| 宁津县| 罗甸县| 祁东县| 繁峙县| 兴业县| 宜阳县| 义乌市| 江陵县| 德格县| 萍乡市| 邵阳县| 大城县| 湾仔区| 游戏| 桓仁| 宁波市| 阿克| 柳林县| 安丘市| 卫辉市| 金山区| 金塔县| 远安县| 水富县| 元谋县|