ErrorText Property



 
The ErrorText property contains the error message if an error occurred.


Syntax

    [str=] SiteKiosk.Dialup.ErrorText
Possible Values
    String that retrieves the error message.

    The property is read only.
Remarks
    None.
Examples
    The following example tries to connect and shows the error message if an error occurres.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Dialup.OnError = OnError;
    function OnError()
    {
       alert(SiteKiosk.Dialup.ErrorText);
    }
    myconn = SiteKiosk.Dialup.RequestConnection("reason", false, true);
    </SCRIPT>
    

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

Back to top