CheckForIntranet Property
The CheckForIntranet property indicates whether to check for an existing connection to a web server before establishing a new connection.
Syntax
[bool=] SiteKiosk.Dialup.CheckForIntranet
|
Possible Values
Boolean value that retrieves the check status.
|
The property is read only.
Remarks
Examples
The following example determines whether to check for an existing connection before establishing a new connection and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Dialup.CheckForIntranet);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top