> Can anybody tell me how to make decision making in
> struts (IF-THEN-ELSE).
> I couldn't find proper tags in LOGIC.
That's because they aren't there. Instead use the JSTL logic tags:
<c:choose>
<c:when test="${...}">
this is the "if" part
</c:when>
<c:otherwise>
and this is the "else" part
</c:otherwise>
</c:choose>
--
Tim Slattery
[EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]