> Is there a taglib in struts which would allow me to compare a value of a > variable with a value of another variable. I went thru struts docs and found > only constants can be compared with <logic:equal> tag > > -Hari
Try this : <bean:define id="variable1_value" name="variable1" property="value" /> <logic:equal name="variable2" property="value" value="<%= variable1_value %>" > ... </logic:equal> Nico. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

