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