how can I have multiple conditions in <c:if… statement?
I need to say something like this:
<c:if test="${param.lowerLimit == null} AND SOMETHING ELSE">
thanks.
how can I have multiple conditions in <c:if… statement?
I need to say something like this:
<c:if test="${param.lowerLimit == null} AND SOMETHING ELSE">
thanks.
<c:if test="${(param.lowerlimit == null) and (param.choose gt 1)}">
<%--stuff in here--%>
</c:if>
Any expression to be evaluated goes between the ${} markers.