How do I check two conditions in one <c:if>? I tried this, but it raises an error:
<c:if>
<c:if test="${ISAJAX == 0} && ${ISDATE == 0}">
This look like a duplicate of JSTL conditional check.
The error is having the && outside the expression. Instead use
&&
<c:if test="${ISAJAX == 0 && ISDATE == 0}">
2.1m questions
2.1m answers
60 comments
57.0k users