Take for example the following code:
try { Response.Redirect(someurl); } finally { // Will this code run? }
Try this:
try { Response.Redirect("http://www.google.com"); } finally { // Will this code run? // yes :) Response.Redirect("http://stackoverflow.com/questions/3668422/will-code-in-finally-run-after-a-redirect"); }