Response.Redirect method

Instructs the browser to request the given URL.

Usage

Response.Redirect url

Details

Sends a HTTP 302 redirect to the browser, causing the browser to request the given URL.

Tip

Using Server.Transfer method is more efficient than Response.Redirect (which requires another client request and server response).