ASP Redirect Method

response object reference manual

Definition and Usage

The Redirect method redirects the user to a different URL.

Syntax

Response.Redirect URL
Parameters Description
URL Required. The URL to which the user's browser is redirected.

Example

<%
Response.Redirect "http://www.codew3c.com"
%>

response object reference manual