Our ASP.NET 2 web application handles exceptions very elegantly. We exclude exceptions from Global ASAX in Application_Error. From there, we register an exception, and we show a friendly message to the user.
However, this morning we deployed the latest version of our site. It went fine for half an hour, but then crashed in the App Pool. The site did not return until we restored the previous release.
How can I crash the application pool and skip the normal exception handler? I am trying to reproduce this problem, but so far no luck.
Update : we found a solution. One of our pages was shielding another page. But the URL was configured incorrectly, and the page finished scripting without restrictions, which caused an exception.
willem Jun 15 '10 at 11:40 2010-06-15 11:40
source share