<c:forEach var="row" items="${result.rows}">
<tr>
<td><a href="view.jsp"><c:out value="${row.Title}"/> </a></td>
<td><c:out value="${row.Description}"/></td>
<td><c:out value="${row.AType}"/></td>
<td><image height="100px" width="200px" src="<c:out value="${row.LocURL}"/>"/></td>
</tr>
</c:forEach>
我已经尝试了上面的代码,但它没有显示预期的图像,而是一个空框。 这里LocURL是从数据库中检索的图像文件的路径。 请告诉我如何根据标签的路径提供者在表格内显示图像。
答案 0 :(得分:3)
将<image>
更改为<img>