NavigateURL Property
The NavigateURL property contains the navigation URL.
Syntax
NavigationInfo.NavigateURL [=str]
|
Possible Values
String that specifies or retrieves the URL.
|
The property is read/write.
Remarks
Examples
The following example causes the first available computer to navigate.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
navInfo = SiteCafe.Server.CreateNavigationInfo();
navInfo.NavigateURL = "http://www.sitekiosk.com";
navInfo.Send(1);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top