<%@ page language="java" contentType="text/html;charset=Windows-31J"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html><body>
<%
session.setAttribute("name","TOM");
%>
<c:if test="${name == 'TOM'}" var="flg" />
<c:if test="${flg}" >
トム
</c:if>
<c:if test="${!flg}" >
トムではない
</c:if>
</body></html> |