<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<body>
<c:set value="123" var="myVar"/>
<c:if test="${myVar==123}">
Value is 123
</c:if>
<c:if test="${myVar==456}">
Value is 456
</c:if>
<br/>
<c:set value="123" var="myVar"/>
<c:choose>
<c:when test="${myVar==123}">
Value is 123
</c:when>
<c:when test="${myVar==456}">
Value is 456
</c:when>
<c:otherwise>
Value is different
</c:otherwise>
</c:choose>
</body>
</html>
Dosyayı İndir