在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不為空,否則會出現(xiàn)空引用異常。另外,session的存儲是在服務端進行的,因此可以存儲敏感數(shù)據(jù),但需要注意session的管理和清理,避免占用過多的服務端資源。