Value Property
The Value property contains the value of the property.
Syntax
UserProperty.Value [=var]
|
Possible Values
String or Long value that specifies or retrieves the value.
|
The property is read/write.
Remarks
Examples
The following example displays the value of the first user's first property.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
user = SiteCafe.Server.Users.GetUserByIndex(1);
properties = user.GetProperties(1, 10);
alert(properties.Item(1).Value);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top