|
Get SteelArrow!
|
|
|
|
<SAELSE/>
|
|
|
|
|
|
|
|
Return to Tag List |
|
The ELSE tag is used in conjunction with IF blocks. IF
blocks may or may not contain ELSE and ELSEIF blocks.
|
|
Attributes:
None.
|
|
|
The following is an example of ELSE;
|
|
<SASET NAME=var VALUE="Testing 123">
<SAIF COND=var .eq. "Test">
The value of var is Test<BR>
<SAELSEIF COND=var .eq. 123>
The value of var is 123<BR>
<SAELSE>
The value was not Test or 123<BR>
</SAIF>
|
|
|
|