|
Return to Tag List |
|
The APPLICATION tag is used to create variables that area ccessible to those users
that are "working" wihtin the named 'application'. This allows for the defining
of variables at a web application level. Normally, the <SAAPPLICATION> tag is
used in conjunction with the 'application.aro' page.
|
|
Attributes:
NAME | Name of application |
TIMEOUT | Number of minutes to timeout (default is 15) |
|
|
|
The following is an example of APPLICATION;
|
|
<!--- In application.aro --->
<SAAPPLICATION NAME="someApp">
<!--- Set some 'application' variables; if not already set --->
<SADEFSET NAME=APPLICATION.adminEmail VALUE="someone@somewhere.com">
<SADEFSET NAME=APPLICATION.server VALUE="mail.somewhere.com">
<!--- In sendMail.aro --->
<SAMAIL TO=APPLICATION.adminEmail SERVER=APPLICATION.server>
Test email!
</SAMAIL>
|