当条件为真时,我试图在jsp页面中隐藏表,否则显示。我正在使用以下格式执行此操作:
<c:choose>
<c:when test="condition ">
<tr> <td align="center" ><font color="red"><b><fmt:message key=" message here "/></b></font></td></tr>
</c:when>
<c:otherwise>
<center>
<table class="bordered">
</table>
</center>
</c:otherwise>
</c:choose>
我尝试使用此论坛上提供的许多解决方案。但是没有一个奏效。谁能告诉我我在做什么错..