Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does recycle call Application_Start?

Tags:

c#

iis

iis-7

Does Application_Start get called on recycling in IIS 7?

Thank you

like image 260
Lee Avatar asked Aug 19 '12 14:08

Lee


People also ask

What happens when application pool is recycled?

What is application pool recycling in IIS? Recycling means that the worker process that handles requests for that application pool is terminated and a new one is started. This is generally done to avoid unstable states that can lead to application crashes, hangs, or memory leaks.


1 Answers

No, it gets called on the first request after recycling when the application is actually loaded by IIS.

like image 190
Darin Dimitrov Avatar answered Oct 22 '22 07:10

Darin Dimitrov