Given an IIS server which receives heavy traffic and a website has been restarted, what happens to pending requests during the Application_Start event in ASP.NET?
It is my understanding that the first request triggers the applications completion and startup. Do the other requests just queue up?
Our Application_Start event does a lot of configuration and setup and can take several seconds. Is it bad to have heavy traffic during this time?