more than one condition using logic tags...

2003-10-29 Thread VKeswani
Hello, I asked this before - Is it possible to have more than one condition using struts logic tags...like If A B C then { do something... } how to achieve this in the jsp using logic tags? Please help

Re: more than one condition using logic tags...

2003-10-29 Thread Jeff Kyser
sure - just nest them. On Wednesday, October 29, 2003, at 09:38 AM, [EMAIL PROTECTED] wrote: Hello, I asked this before - Is it possible to have more than one condition using struts logic tags...like If A B C then { do something... } how to achieve this in the jsp using logic tags?

Re: more than one condition using logic tags...

2003-10-29 Thread Sasha Borodin
Or you could use the JSTL conditional tag: c:if test=${condition1 AND condition2 AND condition3} your html /c:if -Sasha On 10/29/03 09:43, Jeff Kyser [EMAIL PROTECTED] wrote: sure - just nest them. On Wednesday, October 29, 2003, at 09:38 AM, [EMAIL PROTECTED] wrote: Hello, I

Re: more than one condition using logic tags...

2003-10-29 Thread David Graham
--- [EMAIL PROTECTED] wrote: Hello, I asked this before - Is it possible to have more than one condition using struts logic tags...like If A B C then { do something... } The JSTL provides this capability: c:if test=${A B C} do something /c:if

Re: more than one condition using logic tags...

2003-10-29 Thread VKeswani
Thanks all... David Graham [EMAIL PROTECTED] 10/29/2003 10:06 AM Please respond to Struts Users Mailing List To: Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:Re: more than one condition using logic tags... --- [EMAIL PROTECTED] wrote