> Can the struts logic tags be used to perform OR Logic?

No, but the JSTL <c:if..> tag can do it easily. For your example:

<c:if test="${user.key == '1' || user.key=='2' || user.key=='3'}">
...do this
</c:if>

--
Tim Slattery
[EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to