IE 7 not shows the data on jsp page
I have list of the objects.that i am display using the jstl (for:each tag),the tag is generates the data but it not shown on the jsp page.I checked the same thing for the IE8 and Firefox browser and it working properly.
<c:forEach items="${userList}" var="user">
<table width="100%" border="0" cellpadding="0" cellspacing="0" align="left">
<tbody>
<tr><td><c:out value="${user.name}"/></td></tr>
</tbody>
</table>
</c:forEach>
another important point is that when i view the 开发者_如何学编程page source it shows me all the data in the above format,i.e my data is render on the page but not showing on the browser.
Please help me ..
Try it this way;
<table width="100%" border="0" cellpadding="0" cellspacing="0" align="left">
<tbody>
<c:forEach items="${userList}" var="user">
<tr>
<td><c:out value="${user.name}"/></td>
</tr>
</c:forEach>
</tbody>
</table>
精彩评论