Friday, January 20, 2012

Exception handling difference between .NET Framework 1.1 and 2.0

What happens if there is an application exception thrown and is not caught by application.

In .NET framework 1.1, it impacts the current application (web or windows)

In .NET Framework 2.0, it goes upto worker process (beyond our current application), and after a couple of uncaught exceptions, the Website will be stopped automatically (Dangerous !!).