Hi-
I'm learning struts & I am having a bit of trouble making this piece code work. It's always showing this table element's text/link. It doesn't seem to respond if the value of betaSetting is true or false. The value of betaSetting is "false" & I only want to show this table element if betaSetting is "true". Could someone give me pointers as to what I might be doing wrong?
thanks in advance.
<logic:present name="UserContainer" property="betaSetting" scope="session">
....
<td width="233" height="1" align="left">
<logic:equal name="UserContainer" property="betaSetting" value="true">
<font face="Verdana" size="1" color="#111111">
<html:link href="#" style="text-decoration: none" target="frame.main">
<font color="#000000"><html:img srcKey="image.bullet" width="21" height="17" border="0"/></font></html:link>
<html:link href="#" style="text-decoration: none" target="frame.main"><font face="Verdana" color="#111111" size="2">
<bean:message key="navbar.trans.message"/></font></html:link><font size="1"> </font>
</logic:equal>
</td>
...