NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Page.Navigate

Redirects a client browser to a different URL. The URL can either be local or remote.

[Visual Basic]
Public Sub Navigate( _
   ByVal url As String _
)
[C#]
public void Navigate(
   string url
);
[C++]
public: void Navigate(
   String* url
);
[JScript]
public function Navigate(
   url : String
);

Parameters

url
The URL to which the browser will be redirected.

Remarks

There are three steps invlolved once this method is called. The first calls Response.Redirect, the second recursively Unloads all controls in the tree, and the last calls Response.End.

CAUTION   This method does not return; instead it deletes the current request execution stack.

See Also

Page Class | Page Members | System.Web.UI Namespace