Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
Previous Versions
.NET Framework 1.1
.NET Framework
Reference
System.Web
HttpResponse Class
Methods
Redirect Method

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2003/.NET Framework 1.1

Other versions are also available for the following:
.NET Framework Class Library
HttpResponse.Redirect Method

Redirects a client to a new URL.

Overload List

Redirects a client to a new URL and specifies the new URL.

[Visual Basic] Overloads Public Sub Redirect(String)
[C#] public void Redirect(string);
[C++] public: void Redirect(String*);
[JScript] public function Redirect(String);

Redirects a client to a new URL. Specifies the new URL and whether execution of the current page should terminate.

[Visual Basic] Overloads Public Sub Redirect(String, Boolean)
[C#] public void Redirect(string, bool);
[C++] public: void Redirect(String*, bool);
[JScript] public function Redirect(String, Boolean);

Example

The following example forces an unconditional redirection to another Web site.

[Visual Basic] 
Response.Redirect("http://www.microsoft.com/gohere/look.htm")
   

[C#] 
Response.Redirect("http://www.microsoft.com/gohere/look.htm");
   

[C++] 
Response->Redirect(S"http://www.microsoft.com/gohere/look.htm");
   

[JScript] 
Response.Redirect("http://www.microsoft.com/gohere/look.htm")
   

See Also

HttpResponse Class | HttpResponse Members | System.Web Namespace

© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker