afroblanca
Programmer
Hey all,
Here's the situation -
Say that you've caught an exception, and you want to manually redirect to the standard ASP .NET server error page, and you want the page to display all the appropriate information about the exception that you caught. Is this possible?
Here's the background information -
I'm working with AJAX .NET, which has a really lame way of handling exceptions. I'm able to get around some of the lameness by handling the AsyncPostBackError event. What this does is allow my code to catch the exception, which is great. However, here's the catch - I can't just throw the exception from my AsyncPostBackError handler. If I do, then AJAX .NET's lame exception handler kicks in, and ruins the whole show. What I want to do is take the exception that I've caught, and somehow 'throw' it to the standard ASP .NET server error page. This seems like something that I should be able to do.
Any thoughts on the matter?
Here's the situation -
Say that you've caught an exception, and you want to manually redirect to the standard ASP .NET server error page, and you want the page to display all the appropriate information about the exception that you caught. Is this possible?
Here's the background information -
I'm working with AJAX .NET, which has a really lame way of handling exceptions. I'm able to get around some of the lameness by handling the AsyncPostBackError event. What this does is allow my code to catch the exception, which is great. However, here's the catch - I can't just throw the exception from my AsyncPostBackError handler. If I do, then AJAX .NET's lame exception handler kicks in, and ruins the whole show. What I want to do is take the exception that I've caught, and somehow 'throw' it to the standard ASP .NET server error page. This seems like something that I should be able to do.
Any thoughts on the matter?