Possible Duplicate:
Will code in finally run after a redirect?

Hello,

What happens when I call a Response.Redirect() with EndResponse set to true/false inisde a try/finally block? Will the finally be called?

link|improve this question

2  
did you try? what happened? – Mat May 28 '11 at 7:22
feedback

closed as exact duplicate by Mat, NLV, bzlm, Richard, Gilles May 30 '11 at 7:29

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 3 down vote accepted

The finally block in a try/finally will always be called - that's the point of finally.

Exceptions (minor) are described here: Conditions when finally does not execute in a .net try..finally block

link|improve this answer
+1 Thanks for that useful link. – NLV May 28 '11 at 7:30
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.