ConnectionTry Property



 
The ConnectionTry property contains the number of times SiteKiosk tried to connect.


Syntax

    [long=] SiteKiosk.Dialup.ConnectionTry
Possible Values
    Long value that retrieves the number of times.

    The property is read only.
Remarks
    None.
Examples
    The following example connects to the Internet and shows the number of tries in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    myconn = SiteKiosk.Dialup.RequestConnection("reason", true, true);
    alert(SiteKiosk.Dialup.ConnectionTry);
    </SCRIPT>

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top