At least one issue you might be facing is that the taglib uri has 
changed. I think you want:
<%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %>

Not with /jsp/jstl

--
Matt Pangaro
Lokitech >> software . strategy . design
http://www.lokitech.com
e. [EMAIL PROTECTED]


Joe Zuffoletto wrote:
> Hi Scott. Thanks for your quick response.
> 
> Yes, it's the EL expressions that aren't working.
> 
> I upgraded my web.xml to 2.5 as you suggested. I've also skipped ahead to 
> Resin 3.1.3 and JDK 1.5 - might as well endure all the pain at once....
> 
> This works:
> 
>           <%@ taglib uri="/struts-logic.tld" prefix="logic" %>
>           <logic:equal name="accountForm" property="mode" value="add">
>             <bean:message key="account.label.new" />
>           </logic:equal>
>           <logic:equal name="accountForm" property="mode" value="edit">
>             <bean:message key="account.label.edit" />
>           </logic:equal>
> 
> This does not:
> 
>          <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>
>          <c:if test='${accountForm.mode=="add"}'>
>             <bean:message key="account.label.new" />
>           </c:if>
>           <c:if test='${accountForm.mode=="edit"}'>
>             <bean:message key="account.label.edit" />
>           </c:if>



_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

Reply via email to