SessionAmount Property



 
The SessionAmount property contains the current session amount.


Syntax

    [cur=] Session.SessionAmount
    
Possible Values
    Currency value that retrieves the amount.

    The property is read only.
Remarks Examples
    The following example displays the current amount of the first computer's first session.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    sessions = SiteCafe.Server.Sessions.GetSessions(1, 0, 0, 1, 10, true);
    alert(sessions.Item(1).SessionAmount);
    </SCRIPT>
    

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

Back to top