JSTL If With Logical Operator And/Or : If « JSTL « Java Tutorial






<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>

<html>
<head>
<title>EL Expression Examples</title>
</head>
<body>
<h1>EL Expression Examples</h1>

<h2>Logical Operators</h2>

<c:set var="guess" value="12"/>
<b>Your guess is </b>
<c:out value="${guess}"/>

<br/>

<c:if test="${(guess >= 10)  && (guess <= 20)}">
   <b>You're in range!</b><br/>
</c:if>
<c:if test="${(guess < 10)  || (guess > 20)}">
   <b>Try again!</b><br/>
</c:if>

</body>
</html>
  Download:  JSTLIfWithLogicalOperatorAndOr.zip( 1,021 k)








24.4.If
24.4.1.JSTL If Statement
24.4.2.JSTL If Else Statement
24.4.3.JSTL If With Logical Operator And/Or
24.4.4.JSTL If Statement with True Value
24.4.5.JSTL If Statement without Body
24.4.6.Set Test Result to Variable
24.4.7.NULL value And Boolean