Choose When Statement : Choose « JSTL « Java Tutorial






<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
  <head>
    <title>Using Choose,Otherwise and When</title>
  </head>

  <body>
    <c:if test="${pageContext.request.method=='POST'}">You entered:
    
    <c:choose>
      <c:when test="${param.enter=='1'}">One
      <br />
      </c:when>

      <c:when test="${param.enter=='2'}">Two
      <br />
      </c:when>

      <c:when test="${param.enter=='3'}">Three
      <br />
      </c:when>

      <c:when test="${param.enter=='4'}">Four
      <br />
      </c:when>

      <c:when test="${param.enter=='5'}">Five
      <br />
      </c:when>

      <c:otherwise>
        <c:out value="${param.enter}" />

        <br />
      </c:otherwise>
    </c:choose>
    </c:if>

    <form method="post">Enter a number between 1 and 5:
    <input type="text" name="enter" />

    <input type="submit" value="Accept" />

    <br />
    </form>
  </body>
</html>
  Download:  JSTLChooseWhenStatement.zip( 1,226 k)








24.5.Choose
24.5.1.Tag Examples - choose
24.5.2.Combine If Chooser to Report Exception
24.5.3.Choose XML Data with Comparision
24.5.4.Choose When Statement
24.5.5.Choose When and Otherwise