1. 程式人生 > >jsp頁面中jstl裡面 c:if的使用

jsp頁面中jstl裡面 c:if的使用

jstl 的使用

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<c:if test="${sessionScope.user.name==null}">
		<!-- 登入欄 -->
		<jsp:include page="pubtitle/loginnavigator.jsp"></jsp:include><br>
	</c:if>

	<c:if test="${sessionScope.user.name!=null}">
	<!-- 個人欄 -->
	<jsp:include page="pubtitle/loginednavigator.jsp"></jsp:include><br>
	</c:if>