iselse Element

Use with <isif> to specify what happens if neither the <isif> condition nor any <iselseif> conditions evaluate to true.

Syntax 

1<isif condition = if_expression>
2  ...
3 <iselseif condition = elseif_expression> //0 or more
4  ...
5 </iselseif>
6 <iselse>
7  ...
8</isif>

Example 

1<input type="text" name="${pdict.CurrentForms.cart.couponCode.htmlName}" size="30"/>
2<isif condition="${pdict.CurrentForms.cart.couponCodeValid.valid}">
3value="${pdict.CurrentForms.cart.couponCode.htmlValue}"
4	<iselse>
5		value=""
6</isif>

In this example, a coupon code is entered in the browser. If it’s invalid, <iselse> returns a value of "".