relaxlife.net .NET Session操作类



//*******************************************************************************
// OdbcHelper ODBC连接数据库方式
// [url]www.relaxlife.net[/url] 收藏
// QQ群:4341998
//*******************************************************************************
using System;
using System.Collections.Generic;
using System.Text;
using System.Web;

namespace Pub.Class
{
///
/// Sessions操作类
///
public class Session
{
#region Set
///
/// 设置Session值
///
/// Session名称
/// Session名称对应的值
static public void Set(String InfoName, String InfoValue)
{
HttpContext.Current.Session[InfoName] = InfoValue;
}
#endregion

#region Get
///
/// 取Session值
///
/// Session名称
/// Session名称对应的值
static public String Get(String InfoName)
{
string _Value = "";
if (HttpContext.Current.Session[InfoName] != null) { _Value = Convert.ToString(HttpContext.Current.Session[InfoName]); }
return _Value;
}
#endregion
}
}


附件附件:

您所在的用户组无法下载或查看附件

看帖回帖是每个网民应尽的义务...
喜欢的顶一下,楼主才会更有动力。