ProgressPercent Property



 
The ProgressPercent property contains the current connecting progress.


Syntax

    [long=] SiteKiosk.Dialup.ProgressPercent
Possible Values
    Long value that retrieves the percentage of progress.

    The property is read only.
Remarks
    None.
Examples
    The following example tries to connect and shows the progress in an alert window when the request has been processed.

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

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

Back to top