Redirect

The Redirect method causes the browser to attempt to connect to a different URL.

Syntax

Response.Redirect URL

Parameters

URL

The Uniform Resource Locator that specifies the location to which the browser is redirected.

Remarks

Any response body content set explicitly in the page is ignored. However, the method does send to the client other HTTP headers set by this page. An automatic response body containing the redirect URL as a link is generated. The Redirect method sends the following explicit header, where URL is the value passed to the method.

HTTP/1.0 302 Object Moved
Location URL

Applies To

Response Object


© Microsoft Corporation. All rights reserved.