如何使用JSP <c:out>标记设置HTML <img/>标记的src

时间:2015-05-10 10:24:34

标签: html jsp

<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是从数据库中检索的图像文件的路径。 请告诉我如何根据标签的路径提供者在表格内显示图像。

1 个答案:

答案 0 :(得分:3)

<image>更改为<img>