InfoConnect API Guide
Attachmate.Reflection.Web.Msie Namespace / IWebControl Interface / Navigate Method / Navigate(String,String) Method
The Web document URL.
The name of the frame in which to load the document.


In This Topic
    Navigate(String,String) Method
    In This Topic
    Navigates to the URL and displays the content in the frame pointed to by targetFrameName.
    Syntax
    'Declaration
     
    
    <SuppressMessageAttribute("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings")>
    Overloads Sub Navigate( _
       ByVal Url As String, _
       ByVal targetFrameName As String _
    ) 
    'Usage
     
    
    Dim instance As IWebControl
    Dim Url As String
    Dim targetFrameName As String
     
    instance.Navigate(Url, targetFrameName)
    [SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings")]
    void Navigate( 
       string Url,
       string targetFrameName
    )

    Parameters

    Url
    The Web document URL.
    targetFrameName
    The name of the frame in which to load the document.
    See Also