Take for example the following code:
try { Response.Redirect(someurl); } finally { // Will this code run? }
Simple enough to test:
try { Response.Redirect(someurl); } finally { File.WriteAllText("C:\\Temp\\test.txt", "The finally block ran."); }