E
Erik Pragt
Hello everyone,
Currently I'm testing JSTL, but I'm having some troubles with my Tomcat 5
configuration. I have a very simple page:
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<title>Dit is een testje</title>
<head>
<body>
<c:forEach var="i" begin="1" end="5" step="1">
<c
ut value="${i}" />
<br />
</c:forEach>
<c
ut value="erik" />
</body>
</html>
But instead of getting the values of 'i', $i is printed...
Thus, the output is:
....
<body>
${i}
<br />
${i}
<br />
${i}
<br />
${i}
<br />
${i}
<br />
erik
</body>
....
Can someone please help me with this?
Thanks in advance,
Erik Pragt
Currently I'm testing JSTL, but I'm having some troubles with my Tomcat 5
configuration. I have a very simple page:
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<title>Dit is een testje</title>
<head>
<body>
<c:forEach var="i" begin="1" end="5" step="1">
<c
<br />
</c:forEach>
<c
</body>
</html>
But instead of getting the values of 'i', $i is printed...
Thus, the output is:
....
<body>
${i}
<br />
${i}
<br />
${i}
<br />
${i}
<br />
${i}
<br />
erik
</body>
....
Can someone please help me with this?
Thanks in advance,
Erik Pragt