Response.Redirect methodResponse.Redirect url
Sends a HTTP 302 redirect to the
browser, causing the browser to request the given URL.
Using Server.Transfer method is
more efficient than Response.Redirect
(which requires another client request and server response).