Possible Duplicate:
.NET Application_BeginRequest - How to get User reference?

I have problem with my asp Login control. I have set the Forms authentication mode in my web.config file, and I want to get the logged user data in the global.asax -> Application_BeginRequest method.

.aspx code snippet:

  <asp:Login OnAuthenticate="Login1_Authenticate" ID="LoginUser" runat="server">
     [...]
  </asp:Login>

    protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
    {
        if (Membership.ValidateUser(LoginUser.UserName, LoginUser.Password))
        {
            FormsAuthentication.SetAuthCookie(LoginUser.UserName, LoginUser.RememberMeSet);
        }
    }

The global.asax code snippet

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        var usr = HttpContext.Current.User;
    }

the HttpContext.Current.User property is null - why ?

link|improve this question

62% accept rate
feedback

closed as exact duplicate by JohnB, Mystere Man, rick schott, Tony, Conrad Frix Nov 15 '11 at 22:10

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

Umm.. because the user is not yet authenticated? Application_BeginRequest is called at the very beginning of the request, before anything else has happened, such as validating the authentication cookie.

Why do you need to do this in BeginRequest?

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.