Mega Code Archive

 
Categories / Java Tutorial / JSTL
 

NULL value And Boolean

<%@ 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>Boolean and Null Values</h2> <c:set var="StrVar" value="true"/> <c:if test="${StrVar}">   equal! </c:if><br/> null == null <c:out value="${null == null}"/> </body> </html>