:::: 개발 ::::/└ JSP & SPRING

JSTL eq 비교가 안될때..

nayha 2012. 11. 8. 09:57

<c:set var = "pass" value="${param.pass}" />

으로 var 세팅 후 비교 하면 조건이 잘 먹는다 


아우 직접 비교하니 안되더만 ㅎㅎ 

빙글빙글~ 이미지도 보관 ㅋ


<%@ page contentType = "text/html; charset=euckr" %>
<%@ taglib prefix = "c" uri = "http://java.sun.com/jsp/jstl/core" %>
<html>
<body>
    <c:set var = "pass" value="${param.pass}" />
    <c:if test="${!empty pass}">
        Pass value : ${pass}
    </c:if>
    <c:if test="${empty pass}">Please input param...
    </c:if>
    <%-- <c:out value="${pass}" />  --%>
</body>
</html>

반응형