Do you know how you can click the yellow arrow on a breakpoint and drag it down to skip code lines? Well, is it possible to create a “When Hit” macro (or something similar) that skips the execution of a line containing a breakpoint?
So, instead of writing code like
if(!Debugging)
Response.Redirect("LoginFail.aspx");
I could set a breakpoint on the line Response.Redirect()and "When Hit" will skip it.
source
share