<@EXIT>
Description
Causes processing of the current Results
HTML, No Results HTML, or Error HTML to end. Processing of the
application file continues with the next action. This tag has no
attributes.
This tag is generally used with an <@IF>
tag to terminate processing of the current HTML when some condition is
met.
Example
The following example processes the block
of Results HTML only if the user has privileges on the system, that
is, if the user's access level is greater than "5".
[...standard results are found
here...]
<@IF EXPR="@@user$accesslevel>5" FALSE=<@EXIT>>
Here are some additional details on the records that were
returned:
<@ROWS>
<STRONG>Name:</STRONG> <@COLUMN NAME="user.name"><BR>
<STRONG>Password:</STRONG> <@COLUMN NAME="user.password"><BR>
</@ROWS>
See Also
<@BREAK>
<@CONTINUE>
|