Send Method
The Send method sends the navigation command to a computer.
Syntax
NavigationInfo.Send(index)
|
Parameters
index |
Long value that specifies the computer index. |
Return Value
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