Jstl1.2 & Jsf1.2 not working
843844Mar 10 2008 — edited Mar 12 2008<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<f:view>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<c:forEach var="i" begin="1" end="2">
<h:outputText value="#{i}"/>
</c:forEach>
</body>
</html>
</f:view>
There is no result getting displayed.
Environment is Jstl1.2 and Tomcat6.0 and netbeans6
Please suggest solution.