C#程序中session的基本設(shè)置示例及清除session的方法
更新時間:2016年04月05日 16:41:03 作者:sunzhenlin2008
這篇文章主要介紹了C#程序中session的基本設(shè)置示例及清除session的方法,是C#入門學(xué)習(xí)中的基礎(chǔ)知識,需要的朋友可以參考下
session的基本設(shè)置:
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
//清除某個Session
Session["UserName"] = null;
Session.Remove("UserName");
相關(guān)文章
學(xué)習(xí)C#靜態(tài)函數(shù)及變量的一個精典例子與代碼
學(xué)習(xí)C#靜態(tài)函數(shù)及變量的一個精典例子與代碼...2007-03-03
c# 將Datatable數(shù)據(jù)導(dǎo)出到Excel表格中
本文主要介紹了c# 將Datatable數(shù)據(jù)導(dǎo)出到Excel表格中的方法。具有很好的參考價值。下面跟著小編一起來看下吧2017-03-03

