在C#中,可以使用HttpContext类来访问和操作session。以下是一些常见的session使用方法:
HttpContext.Current.Session["key"] = "value";
string value = (string)HttpContext.Current.Session["key"];
if (HttpContext.Current.Session["key"] != null)
{
// session中包含该键
}
HttpContext.Current.Session.Remove("key");
需要注意的是,session在使用前需要确保HttpContext.Current不为空,否则会出现空引用异常。另外,session的存储是在服务端进行的,因此可以存储敏感数据,但需要注意session的管理和清理,避免占用过多的服务端资源。