Asp Mvc 5重定向到HttpApplication事件处理程序中的其他网站

时间:2014-04-08 10:55:54

标签: asp.net-mvc

您好我需要将授权用户重定向到其他网站,以防有一些额外的条件,全球asax(HttpApplication)中最好的事件是什么? AuthorizeRequest事件是否合适?

1 个答案:

答案 0 :(得分:0)

为什么不能简单地在控制器中基于IsAuthorized重定向?

if (User.Identity.IsAuthenticated && User.Identity.IsAuthorized)
{
  //redirect somewhere  
}