Monday, February 3, 2014

Understanding ASP.NET Application and Page Life Cycle - A Beginner's Tutorial


void Application_AuthenticateRequest(object sender, EventArgs e)
{
    System.Diagnostics.Debug.WriteLine("MyLog: 2. Application_AuthenticateRequest");
}
And the output for this looks like:

The red highlighted area represent the phase when the respective handler gets called and in this case which would call the aspx page. 

No comments:

Post a Comment