compare more than one value using logic equal in struts
gita bal
Greenhorn
Joined: Feb 22, 2010
Posts: 4
posted
0
I want to compare more than value and display a field using <logic:equal>. Please proveide some examples
<logic:equal name="apcDetailsForm" property="selectedSheetTemplate" value="2"||"3" >
You'd be better off using JSTL's c:if tag; when functionality overlaps with the JSTL you should favor the JSTL. This also gives you a complete EL that will allow you to do more complex calculations.
That said, if the calculation is even remotely complex, I'd consider moving the logic to the Java layer rather than doing in the JSP itself.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: compare more than one value using logic equal in struts