I got this error when using Response.Redirect in a Try-Catch. I'd never seen it before, but it is resolved by specifying 'false' after the URL like below. This tells the execution of the current page not to terminate:
Response.Redirect("whatever.aspx",false);
0 comments:
Post a Comment