Response.Redirect(URL, false): The client is redirected to a new page and the current page on the server will keep processing ahead.
Response.Redirect("default.aspx", false);
Response.Redirect(URL, true): The client is redirected to a new page, but the processing of the current page is aborted.
Response.Redirect("default.aspx", true);