I am currently researching an Exception handling architecture for our App.
We will be using UpdatePanels extensively and we will also be calling webservices.
I want to know if there is any real need to implement a ScriptManager.OnAsyncPostBackError handler compared to, the Page_Error event which seems to catch all exceptions that are thrown in the App.
The only benefits appears to be the possibility to customise error messages, but that can be achieved if you have access to the Scriptmanager object itself.
Are there any situations where the AsynchPostBackError will catch something the Page_Error won't?