Mega Code Archive

 
Categories / Java Tutorial / JSTL
 

JSTL If Statement with True Value

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> <HTML>   <HEAD><TITLE>JSTL 'if' tag</TITLE></HEAD>   <BODY>     <c:if test="true">Hello world!</c:if>   </BODY> </HTML>