标签: asp.net-mvc
您好我需要将授权用户重定向到其他网站,以防有一些额外的条件,全球asax(HttpApplication)中最好的事件是什么? AuthorizeRequest事件是否合适?
答案 0 :(得分:0)
为什么不能简单地在控制器中基于IsAuthorized重定向?
if (User.Identity.IsAuthenticated && User.Identity.IsAuthorized) { //redirect somewhere }