What is the equivalant of if()else if()else if()
in JSTL I tried using
<c:choose>
<c:when></c:when>
<c:when></c:when><c:otherwise>
<c:when></c:when>
</c:otherwise>
</c:choose>
but it was giving error.
That's because your mixed up your tags. It should be:
<c:choose>
<c:when test="..."> ... </c:when>
<c:when test="..."> ... </c:when>
<c:otherwise> ... </c:otherwise>
</c:choose>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With