Monday, 27 July 2015

List of Global.asax events in mvc.

protected void Application_Start(object sender, EventArgs e)
       {

       }

protected void Session_Start(object sender, EventArgs e)
        {

        }

protected void Application_BeginRequest(object sender, EventArgs e)
        {
        }

protected void Application_AuthenticateRequest(object sender,EventArgs e)
        {

        }

protected void Application_Error(object sender, EventArgs e)
        {

        }

protected void Session_End(object sender, EventArgs e)
        {

        }

protected void Application_End(object sender, EventArgs e)
        {

        }

protected void Application_Start()
        {
            
        }

No comments:

Post a Comment