IPAddress Property



 
The IPAddress property contains the current IP address.


Syntax

    [str=] Computer.IPAddress
    
Possible Values
    String that retrieves the address.

    The property is read only.
Remarks
    None.
Examples
    The following example displays the IP address of the first available computer.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    computer = SiteCafe.Server.Computers.GetComputerByIndex(1);
    alert(computer.IPAddress);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top