hello
MyEclipse says that the tag c:forEach is wrong in this code:
<%@ page language="java" import="java.util.*" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
<title>My JSP 'MyJsp.jsp' starting page</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
This is my JSP page. <br>
<c:forEach var="i" begin="1" end="4">
<FONT size="${i}">Hello World</FONT> <BR/>
</c:forEach>
</body>
</html>
[quote]
but when I deploy the aplication, the code works, and is displayed "Hello World" in the 4 diferents sizes
but MyEclipse says that the first c:forEach line is an error
how to repair this error?