Is there a way to handle the error "WebDev.WebServer.Exe has stopped working" in ASP.NET and keep the page running or even the just the WebServer running? Or is this an impossible task and is essentially like asking how to save someone's life after they've died? I have the error-causing code inside a try/catch block, but that doesn't make a difference. I've also tried registering a new UnhandledExceptionEventHandler, but that didn't work either. My code is below in case I'm doing something wrong. Also to be clear, I'm not asking for help on how to prevent the error; I want to know if and when the error happens if there's anything I can do to handle it.\[code\]public bool TestMethod(){ AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); string input = "test"; string result = ""; try { TestDll td = new TestDll(); result = td.PassString(ref input); // <== MAJOR ERROR! // do stuff with result... return true; } catch (Exception ex) { log.Add("Exception: " + ex.Message); return false; }}private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e){ try { Exception ex = (Exception)e.ExceptionObject; log.Add("Exception: " + ex.Message); } catch (Exception exc) { log.Add("Fatal Non-UI Error: " + exc.Message); }}\[/code\]