forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookService.jsp
More file actions
46 lines (46 loc) · 2.26 KB
/
bookService.jsp
File metadata and controls
46 lines (46 loc) · 2.26 KB
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
44
45
46
<%@ page contentType="text/html; charset=gb2312" language="java" pageEncoding="GBK"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
<html>
<head>
<title>网上图书超市</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<table width="90%" border="0" cellpadding="0" cellspacing="0"
class="tableBorder_LTR">
<tr>
<td height="40" align="center">
<div align="center">
<p><span></span></p>
</div></td>
</tr>
</table>
<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="100%" height="49" align="center">
<form name="form1" method="post" action="searchBookOperation.htm">请输入查询条件:
<select name="condition" id="condition" tabindex="2">
<option selected="true">书号</option>
<option>书名</option>
<option>出版社</option></select> <input name="conditionContent" type="text" id="conditionContent"> <input type="submit" name="Submit" value="提交"> </form></td></tr></table>
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0"><!--DWLayoutTable-->
<tr>
<td width="100%" height="362" valign="top">
<table width="100%" border="1" align="center" cellpadding="0" cellspacing="0"><!--DWLayoutTable-->
<tr>
<td><div align="center">书号</div></td>
<td><div align="center">书名</div></td>
<td><div align="center">出版社</div></td>
<td><div align="center">单价</div></td>
<td><div align="center">库存数量</div></td>
<td><div align="center">维护</div></td></tr>
<c:forEach var="book" items="${result}">
<tr>
<td><div align="center">${book.bookId } </div></td>
<td><div align="center">${book.bookName } </div></td>
<td><div align="center">${book.bookConcern } </div></td>
<td><div align="center">${book.price } </div></td>
<td><div align="center">${book.bookCount } </div></td>
<td class="button_03" align="middle"><div align="center"><a href="detailBookOperation.htm?bookID='${book.bookId }'" target="mainFrame">更改</a></div></td></tr></c:forEach></table></td></tr></table></body>
</html>