日期:2014-05-20  浏览次数:20860 次

EL语句的问题
<c:choose>
<c:when test="${sessionScope.a.username==null}">
<%response.setHeader("refresh","1;url=../backlogin.jsp");
return;
%>
</c:when>
</c:choose>
就像这样 为什么不行啊 还有这么解决啊

------解决方案--------------------
<c:if test="${sessionScope.a.username==null}">
<c:redirect url="../backlogin.jsp" />
</c:if>


注意导标签头,
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>