java - How do I hide and unhide a link on a jsp page based on the value of another label on the same jsp using beans? -
how hide , unhide link on jsp page based on value of label on same jsp?
you can still use expression language beans.
<label for="...">${mybean.label}</label> <c:if test="${mybean.label eq ''}"> ... </c:if>
Comments
Post a Comment