hello,
i m using JSTL........and i m getting this error.......can any body help me..........i have copied latest standard.jar and jstl.jar
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
Zhtml>
<head>
<title>Count to 10 Example (using JSTL)</title>
</head>
Zbody>
<c:forEach var="i" begin="1" end="10" step="1">
<cut value="${i}" />
<br />
</c:forEach>
</body>
</html>
I ,am getting error here only
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
Validation error messages from TagLibraryValidator for c
null: java.lang.IllegalStateException: can't declare any more prefixes in this context
i m using
tomcat 5.0 and jdk 1.4.2
Regards
Hrushi