>    how do i implement && and ||  using <logic:xxxxx> 
>  
> example
> i need to convert
>  <% if( a > b && b > c) {
>  
> } 
> %>
>  
> into struts <logic:xxxx> tag   

The easiest way is to use the JSTL "if" tag instead of the Struts logic
tags:

<c:if test="${a>b && b>c}">
   somethingorother
</c:if>


--
Tim Slattery
[EMAIL PROTECTED]


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

Reply via email to