Name Property



 
The Name property contains the name of the admin.


Syntax

    Admin.Name [=str]
    
Possible Values
    String that specifies or retrieves the name.

    The property is read/write.
Remarks
    None.
Examples
    The following example displays the name of the first available admin.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    admin = SiteCafe.Server.Admins.GetAdminByIndex(1);
    alert(admin.Name);
    </SCRIPT>
    

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

Back to top