I am trying to check the database column INT_COLUMN value
Using '<c:if' tag.
It always returns false no matter what the value of ${row.INT_COLUMN}
I tried to test as Integer and Character still the same result.
But the '<c:out' outside the if tag statements seem to print the value
ok.
<c:forEach var="row" items="${someTable.rows}">
<c:if test="${row.INT_COLUMN == 1}">
<c:out value="${row.INT_COLUMN}"/>
</c:if>
<c:if test="${row.INT_COLUMN =='1'}">
<c:out value="${row.INT_COLUMN}"/>
</c:if>
<c:out value="${row.INT_COLUMN}"/>
</c:forEach>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>