Re: More than one condition using struts logic tags???

2003-10-27 Thread Craig R. McClanahan
[EMAIL PROTECTED] wrote:

Hello,

I have a little query ->

How can I check for more that one condition using struts logic tags? like 

if (A & B & C) {
do something.
}
how do I achieve the same using struts logic tags?
 

You can do an "and" test by nesting  tags inside each other.  
There's no convenient way to do an "or" test however; that's where the 
expression language in JSTL and JSP 2.0 comes in very handy (if you're 
running on a recent enough servlet container to support them).

Craig



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


More than one condition using struts logic tags???

2003-10-27 Thread VKeswani
Hello,

I have a little query ->

How can I check for more that one condition using struts logic tags? like 

if (A & B & C) {
do something.
}

how do I achieve the same using struts logic tags?