jstl - Can i use return statement in jsp? -
can use "return" keyword below jsp? searched keyword in jsp documentation , jstl documentation not able find. when use keywords true or false jsp turns different colour . return not change colour. correct use return? please find below jsp code.
.jsp: <c:choose> <c:when test="${(a == 0) && (b == 8) }"> return; </c:when> <c:otherwise> ........ </c:otherwise> </c:choose>
as appears in code, return; plain text displayed on webpage.
i don't know want accomplish, if want call return:
<% return; %>
Comments
Post a Comment