2
Reply

Which event of the global.asax file is called when the application is run for the first time?

Vithal Wadje

Vithal Wadje

12y
1.9k
0
Reply

    Application_Start() method

     The Application_Start() method. Note that this method runs only once in a lifetime of an application. If the application restarts
    (say the web server reboots), it will be called again.