1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Show All Books</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Book ID</th>
<th>Pengarang</th>
<th>Judul</th>
<th>Jenis</th>
<th>Isbn</th>
<th colspan="2">Action</th>
</tr>
</thead>
<tbody>
<c:forEach items="${books}" var="book">
<tr>
<td><c:out value="${book.bookId}" /></td>
<td><c:out value="${book.pengarang}" /></td>
<td><c:out value="${book.judul}" /></td>
<td><c:out value="${book.jenis}" /></td>
<td><c:out value="${book.isbn}" /></td>
<td><a
href="BookController.do?action=edit&booktId=<c:out value="${book.bookId }"/>">Update</a></td>
<td><a
href="BookController.do?action=delete&bookId=<c:out value="${book.bookId }"/>">Delete</a></td>
</tr>
</c:forEach>
</tbody>
</table>
<p>
<a href="BookController.do?action=insert">Add Book</a>
</p>
</body>
</html>