Rick Reumann wrote:

It sounds like you are probably are now using a JSP2.0 container like Tomcat5 and are refering to the wrong tld. Refer to the one in the jar like:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

and remove and direct pointing to the tlds you have.

Yes, I am using Tomcat 5.0.28. I then downloaded beanutils from the jakarta site, replaced the jstl.jar and standard.jar, and pointed to taglibs like you said above. I have strange problem - I am able to use <c:forEach> etc., but the "var" is not getting set. If I give something like this:


<c:forEach begin="1" end="5" var="current">
         <c:out value="${current}" />
</c:forEach>

I get something like this:

${current} ${current} ${current} ${current} ${current}

I can't figure out what seems to be the problem. Please help.

TIA,
Vamsee.

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



Reply via email to