Open In App

ASP Redirect Method

Improve
Improve
Like Article
Like
Save
Share
Report

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:

  • URL: It defines a Uniform resource locator which represents the browser is redirected to.

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"
%>

Last Updated : 04 Jan, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads