If I write this code
protected void Page_Load(object sender, EventArgs e)
{
Page_Load(sender, e);
}
I get an error (infinite recursion):

and the process w3wp.exeends with task manager.
Fine ...
however, if I do:
throw new ApplicationException(); //or SystemException();
it appears on a regular exception page. (w3wp.exe is still working).
questions:
- What exceptions cause w3wp.exe to stop ?
- What exceptions lead to disabling Application Pool ?
ps in accordance with what has just been written, think of the following scenario: I can write a web page, host my site in a site farm, and I can end the whole w3wp.exe process by creating a recursion ..... (also in others will have problems) ...
Can you answer my questions?
thank.