Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 341 Bytes

tomcat7-jstl-if-when.md

File metadata and controls

21 lines (16 loc) · 341 Bytes

Title: JSP: If else in JSTL Tags: jsp,jstl,jstl-if,jstl-when

And if statement in JSTL is:

	<c:if test="${true}">
		Hiya
	</c>

And if-else is actually choose-when-otherwise:

	<c:choose>
		<c:when test="${true}">
			Hiya
		</c:when>
		<c:otherwise>
			Bye
		</c:otherwise>
	</c:choose>

Don't forget to include the jstl taglib.