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:
> 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>

http://java.sun.com/products/jsp/jstl/

David

> 
> 
> how to achieve this in the jsp using logic tags?
> Please help....


__________________________________
Do you Yahoo!?
Exclusive Video Premiere - Britney Spears
http://launch.yahoo.com/promos/britneyspears/

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



Reply via email to