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(Category="Microsoft.Design",
CheckId="CA1054:UriParametersShouldNotBeStrings",
Scope="",
Target="",
MessageId="",
Justification="")>
Overloads Sub Navigate( _
ByVal As String, _
ByVal As String _
)
'Usage
Dim instance As IWebControl
Dim Url As String
Dim targetFrameName As String
instance.Navigate(Url, targetFrameName)
[SuppressMessage(Category="Microsoft.Design",
CheckId="CA1054:UriParametersShouldNotBeStrings",
Scope="",
Target="",
MessageId="",
Justification="")]
void Navigate(
string ,
string
)
Parameters
- Url
- The Web document URL.
- targetFrameName
- The name of the frame in which to load the document.
See Also