Take for example the following code:
try { Response.Redirect(someurl); } finally { // Will this code run? }
The general rule is that the code in finally will be applied in all cases (try/catch)