W
WISEMANOFNARNIA
I have Routine1, which calls Routine 2. Both have a 'try Catch'
clause. Routine 1 looks like this:
Sub Routine1()
Try
Routine2()
Catch
do something
End Try
End Sub
I notice that an error in routine2 is caught in its catch block.
There is a Response.Redirect statement in that catch block, that is
supposed to go to a error page where the user can enter some info on
how the error occurred. But that 'redirect' does not get executed,
instead the routine returns to the 'catch' block of routine #1.
Is there a way around this error?
Thanks,
Marvin
clause. Routine 1 looks like this:
Sub Routine1()
Try
Routine2()
Catch
do something
End Try
End Sub
I notice that an error in routine2 is caught in its catch block.
There is a Response.Redirect statement in that catch block, that is
supposed to go to a error page where the user can enter some info on
how the error occurred. But that 'redirect' does not get executed,
instead the routine returns to the 'catch' block of routine #1.
Is there a way around this error?
Thanks,
Marvin