Response.Redirect has two methods:
public void Redirect(string);
public void Redirect(string, bool);

For the second it says:
Redirects a client to a new URL. Specifies the new URL and whether execution of the current page should terminate.

So if I set the second argument to false it will finish execution of the current page. So this means that, for example, if at the point of redirection a database connection is open it will execute the code after the redirection to close the connection? Is this correct?

For the first method does it finish current page execution by default?

Anyone know? It's just been playing on my mind.

Cheers

DJ