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 );
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.