我不知道,我们为什么要使用HttpContext.Current
?
在这个属性中,我使用它,Session
但我不知道为什么!
public static string Name
{
get
{
if (HttpContext.Current.Session["_n_"] != null)
return HttpContext.Current.Session["_n_"].ToString();
else return "";
}
set
{
HttpContext.Current.Session["_n_"] = value;
}
}