ASP Redirect Method

The Redirect method redirects the user to a different URL."

Syntax

Response.Redirect URL
Parameter Description
URL Required. The URL that the user (browser) is redirected to

Examples

<%
Response.Redirect "https://w3resource.net"
%>

❮ Complete Response Object Reference