T
teser3
I am trying to get my first JSTL to work in Tomcat 6.0.18. I have EL
working.
I assume I have to use JSTL 1.2 for Tomcat 6.0.18?
I put the jar files (standard and jstl) in WEB-INF/lib and tried this
and do not get any JSTL output:
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<title>Count to 10 Example (using JSTL)</title>
</head>
<body>
<c:forEach var="i" begin="1" end="10" step="1">
<cut value="${i}" />
<br />
</c:forEach>
</body>
</html>
Please advise.
working.
I assume I have to use JSTL 1.2 for Tomcat 6.0.18?
I put the jar files (standard and jstl) in WEB-INF/lib and tried this
and do not get any JSTL output:
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<html>
<head>
<title>Count to 10 Example (using JSTL)</title>
</head>
<body>
<c:forEach var="i" begin="1" end="10" step="1">
<cut value="${i}" />
<br />
</c:forEach>
</body>
</html>
Please advise.