标签: asp.net-mvc authentication attributes
是像这样标记方法的任何解决方案
[IsAuthenticated(true)] public ActionResult Profile() { return View(); }
不要拨打if (request.IsAuthenticated)?
if (request.IsAuthenticated)
答案 0 :(得分:9)
AuthorizeAttribute:
[Authorize] public ActionResult Profile() { return View(); }