Skip past navigation linksSecure Global Desktop 4.31 Administration Guide > Applets > addValue (framework applet)

addValue (framework applet)

Syntax

Skip past command syntax or program codevoid addValue(String key, String value) 

Description

The addValue method is used to store general information. value is the information to store; key is its name.

Examples

Skip past command syntax or program code<SCRIPT Language="JavaScript">
function addvalue(key, value)
{
    document.applets[0].addValue(key, value);
}
</SCRIPT>

Defines a function that allows you to store arbitrary information within the framework applet.

Note that the framework applet must be present in the same web page as the addvalue method.

Related topics