attribute items does not accept any expressions
843836Jun 20 2005 — edited Oct 9 2008I am new to JSP,
the following is the code ...
<%@ taglib prefix = "c" uri = "http://java.sun.com/jstl/core" %>
<html>
<body>
You sent the following request headers:
<table border="1">
<tr>
<th>Header</th>
<th>Value</th>
</tr>
< c:forEach var = "entry" items = "${header}">
<tr>
<td>${entry.key}</td>
<td>${entry.value}</td>
</tr>
</c:forEach>
</body>
</html>
The following is the error.
[b][b]org.apache.jasper.JasperException: /request.jsp(11,0) According to TLD or attribute directive in tag file, attribute items does not accept any expressions
Any suggestions?
Thanks.