RLWD Programming

ASP Response.Redirect Function

Sponsored Ads

The ASP Response.Redirect function is used redirect the browser to another web page.

Response.Redirect Function Arguments

String or variable containing web page address

ASP Coding for Response.Redirect Function

<%

sForwardString = "/default.asp"
Response.Redirect = sForwardString

%>


OR

<%

Response.Redirect "/default.asp"

%>


Result

Browser forwards to the default.asp web page