I'd like to use the JSTL <c:if test=""> (or <c:when test="">)action, but the
test i'd like to perform is not a single conditional statement.

For example, i want to do:

<%
        if (x==0 && y==4) {
                // do something
        }
%>

I was able to do:
<c:if test="$x == 0">
something happens here
</c:if>

but not:
<c:if test="$x==0 && $y==4">
something happens here
</c:if>

I tried variations of this, but no dice. 8(
Anybody?

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to