I have a couple of questions all rolled in to one here...
First I'm trying to use JSTL with JRun 4. I have the core working, but EL is not. When I type a loop like such
<c:forEach var="i" begin="1" end="10" step="1">
<c
ut value='${i}' />
<br />
</c:forEach>
The output is just 10 lines that all display ${i} instead of the value of i.
I don't understand why this is happening since I believe I'm configured to use the version of core that supports EL. My import looks like this.
<%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>
And in my web.xml file it is configured as this.
<taglib>
<taglib-uri>/WEB-INF/c.tld</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>
I'm not pointing to Sun for the URI, because it causes a bizarre error message, but I don't believe that should make any difference since I have all of the tlds residing on my local server.
If anyone can help I'd really appreciate it.
Also, is JSTL considered to be THE tag standard? I have heard of a lot of people using the
Struts tag libs instead. I would just like to know what is really the industry standard.
Thanks.