我尝试使用此代码检查用户是否在 Application_BeginRequest 和 Application_AuthenticateRequest 中担任角色,但它不起作用。在 BeginRequest 代码永远不会被命中并且 Authenticate 它被一些请求命中并且探查器没有出现。
仅检查 Request.IsLocal 工作正常。
if(Request.IsAuthenticated)
{
if(User.IsInRole("Admin");
MiniProfiler.Start();
}
任何想法或为什么它不起作用或更好的方法?
[更新]我接受了遮阳篷,但因为我没有完全得到它的工作而取消了它
我做了以下,但探查器一开始没有出现。几次尝试后,它开始出现,即使我尝试使用隐身模式访问该网站,所以没有 cookie。
protected void Application_PostAuthorizeRequest(Object sender, EventArgs e)
{
if (User.IsInRole("Admin"))
{
HttpCookie cookie = HttpContext.Current.Request.Cookies.Get("RoleProfiler");
if (cookie == null)
{
cookie = new HttpCookie("RoleProfiler");
cookie.Value = "yes";
cookie.Expires = DateTime.Now.AddDays(1d);
Response.Cookies.Add(cookie);
}
}
}
我正在检查
protected void Application_BeginRequest(Object sender, EventArgs e)
{
HttpCookie cookie = HttpContext.Current.Request.Cookies.Get("RoleProfiler");
if ((cookie != null) && (cookie.Value == "yes") )
{
MvcMiniProfiler.MiniProfiler.Start();
}
}
并在请求结束时结束。
protected void Application_EndRequest()
{
MvcMiniProfiler.MiniProfiler.Stop();
}
[Update2]结束问题,忽略这个,我被 outputcache 拥有。