This was happening in IIS 6 with .Net 4. Are you experiencing similar issue? The reason IIS keep crashing caused by unhandled exception is because the default policy for an unhandled exception has changed in the .Net framework 2.0 and later version. The behavior of this policy is to end the worker process.

Possible fixes

To fix this permanently, a developer must handle all exceptions in the application. As a workaround, you can change unhandled exception policy back to legacy (.Net framework 1.x)   

Login into problematic IIS server Find which version of .Net you are using Go to below folder

Take a backup of Aspnet.config file Modify or add if doesn’t exist following

Restart IIS Application pool

You will notice, IIS will prevent crashing, and you are back in business. If you want to be master in IIS administration, then check out this course by Hassan Aboul Hassan.

IIS Crashing unexpectedly in the  Net Framework - 17IIS Crashing unexpectedly in the  Net Framework - 10IIS Crashing unexpectedly in the  Net Framework - 88IIS Crashing unexpectedly in the  Net Framework - 93IIS Crashing unexpectedly in the  Net Framework - 6IIS Crashing unexpectedly in the  Net Framework - 13