This documentation is archived and is not being maintained.
HttpResponse.Redirect Method
.NET Framework 1.1
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
Show: