我想创建一个
搜索会话数据的帮助器,最好是这样的:
public static bool CheckForModerator(this HtmlHelper htmlHelper)
{
return Session["isAdmin"];
}
但我无法访问Session []数据.我尝试通过htmlHelper查找,但我也找不到Session.为了访问会话数据,我需要做什么?
using System.Web;
然后
HttpContext context = HttpContext.Current;
return context.Session["isAdmin"];
原文链接:https://www.f2er.com/aspnet/247902.html