What happens if an unhandled exception is thrown i

2019-04-18 18:25发布

问题:

... will the Application_Start method be ran again for the next request(s) or not?

Does it depend on ASP.NET version, hosting server version and/or other context?

I am trying to determine if it's a good thing to load critical assemblies there or not. For example data access assemblies which are vital to the functioning of the whole application or not. Failure to load such assembly would make subsequent requests useless.

回答1:

Application_Start will be fired only once for each web application so in your case, the start will not happen again for subsequent requests.

Typically, I prefer to put one time start-up code in the application start within try-catch and if there is an exception then set the global error flag. In each BeginRequest, the flag is checked and if it is set, user is redirected to a custom error page indicating the site is down and please contact the administrator.