msmvc

.NET MVC - Where to check IsInRole() in Global.asax?

In which part of the Global.asax lifecycle can I safely 'use' the User object? I'm using the default forms authentication and noticed the following: Sub Application_BeginRequest() 'Context.User Is Nothing End Sub Sub Application_AuthenticateRequest() 'Context.User Is Nothing End Sub Sub Application_AuthorizeRequest() 'Cont...