elseif « JSTL « JSP-Servlet Q&A





1. Equivalent of "if elseif elseif" in JSTL    stackoverflow.com

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.