我正在尝试以表格格式在JSP页面中打印来自DAO的书籍详细信息。但是,结果显示在文本字段而不是表格中。请帮忙。
<!DOCTYPE html>
<html>
<table>
<thead>
<tr>
<th>Book ID</th>
<th>Book Name</th>
<th>Author Name</th>
<th>Book Price</th>
</tr>
</thead>
<tbody>
<c:if test="${books.size()<=0}">
<tr>
<td colspan="4"><font color="Salmon">No Records
Found</font></td>
</tr>
</c:if>
<c:forEach items="${books}" var="b">
<tr>
<td>${b.bookID}</td>
<td>${b.bookName}</td>
<td>${b.authorName}</td>
<td>${b.bookPrice}</td>
</tr>
</c:forEach>
</tbody>
</table>
</body>
</html>
我希望以表格形式输出,但显示在文本字段中。