Open In App

ASP Redirect Method

The ASP Redirect Method is used to redirect the client to a different URL. It is a predefined method of the Response Object.

Syntax:



Response.Redirect URL

Parameter Values: This method accepts a single parameter as mentioned above and described below:

Return value: This method does not return any value. 



Example: Below code redirects the user to geeksforgeeks website.

<%
Response.Redirect "https://www.GeeksforGeeks.org.in"
%>
Article Tags :