我想创建一个搜索会话数据的助手,最好是这样的:
public static bool CheckForModerator(this HtmlHelper htmlHelper)
{
return Session["isAdmin"];
}
但我无法访问 Session[] 数据。我尝试浏览htmlHelper
,但我也找不到 Session 那里。为了访问会话数据,我需要做什么?
我想创建一个搜索会话数据的助手,最好是这样的:
public static bool CheckForModerator(this HtmlHelper htmlHelper)
{
return Session["isAdmin"];
}
但我无法访问 Session[] 数据。我尝试浏览htmlHelper
,但我也找不到 Session 那里。为了访问会话数据,我需要做什么?
using System.Web;
进而
HttpContext context = HttpContext.Current;
return context.Session["isAdmin"];
更喜欢(bool)htmlHelper.ViewContext.HttpContext.Session["IsAdmin"]
尝试从System.Web.HttpContext.Current.Session