RE: multiple conditions for an IF statement

2002-03-11 Thread Agrawal, Anuj (Anuj)** CTR **
Hmm... i tried (accidentally) doing: TRUE and that WORKED! So i guess i'd like to know: 1. should i be using {} or ()? 2. is the syntax (AND or &&) dependent on which "style" of brackets i use? 3. where is this all documented? Thanks again. > -Original Mess

Re: multiple conditions for an IF statement

2002-03-09 Thread Ryan Lubke
Hi, I believe the nightly builds of JSTL should be able to support what you're trying to accomplish: TRUE Please take note of the syntax change when specifying an EL value for an attribute (${...}). The EL has changed in the recent builds of JSTL. -rl On Sat, 2002-03-09 at 13:35, Agraw

multiple conditions for an IF statement

2002-03-09 Thread Agrawal, Anuj (Anuj)** CTR **
I'd like to use the JSTL (or )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: something happens here but not: something happens here I