Hi, I'm a bit familiar with JSTL, but right now I need to integrate with some existing JSP code which uses the struts tag-lib and I am a bit lost there.

How do I turn this JSTL:

    <c:set var="gridsize" value="2" />
    <c:if test="${someELvar >= 120}">
      <c:set var="gridsize" value="3" />
    </c:if>

into something that works with the struts-logic tags?

I understand that I can use something like:

<logic:greaterThan parameter="someELvar" value="120">
      ???????????????
</logic:greaterThan>

How do I set/read EL using the struts taglibs?

thanks

Luca


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



Reply via email to