Mega Code Archive

 
Categories / Java / JSTL
 

JSTL If No Body

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> <html>   <head>     <title>If with NO Body</title>   </head>   <body>     <c:if test="${pageContext.request.method=='POST'}">     <c:if test="${param.guess=='5'}" var="result" />     I tested to see if you picked my number, the result was      <c:out value="${result}" />     </c:if>     <form method="post">Guess what number I am thinking of?     <input type="text" name="guess" />     <input type="submit" value="Try!" />     <br />     </form>   </body> </html>                     JSTL-If-No-Body.zip( 851 k)