How can i check if an attribute is set (not null and not an empty string) with jstl? [duplicate]
Use the empty keyword <c:if test=”${not empty post}”> <h3>${post.title}</h3> </c:if>
Use the empty keyword <c:if test=”${not empty post}”> <h3>${post.title}</h3> </c:if>
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}”>