The Redirect method causes the user's browser to redirect to a different URL.
SyntaxResponse.Redirect(url) |
url | string specifying the URL the user is to be redirected to. |
A redirect will end the processing of the current page and send a HTTP 302 redirection
message to the client. The HTTP response will look like the following:302 Moved Temporarily Location: http://www.lexmark.com |
<% Response.Redirect "http://www.lexmark.com" %> |