[JSTL]c:ifでセッションスコープの変数を判定するサンプル

書式
session.setAttribute(変数名,値)
使用例

<%
session.setAttribute("userName","admin");
%>

<c:if test="${userName == 'admin'}" var="st" />

<c:if test="${st}" >
AAA
</c:if>

<c:if test="${!st}" >
BBB
</c:if>

 

JSTL

Posted by arkgame