> Anyone know how to create a condition with struts?

With the Struts <logic: > tags, you don't. Use the JSTL tags instead:

<c:if test="${ arbitrary logical expression}">
   whatever
</c:if>

And 

<c:choose>
  <c:when test="${...}">
     whatever
  </c:when>
  more when clauses
  <c:otherwise>
    stuff that happens when none of the "when" clauses execute
  </c:otherwise>
</c:choose>


--
Tim Slattery
[EMAIL PROTECTED]


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

Reply via email to