forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookReg.jsp
More file actions
141 lines (139 loc) · 3.65 KB
/
Copy pathbookReg.jsp
File metadata and controls
141 lines (139 loc) · 3.65 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<%@ page pageEncoding="gb2312" import="java.sql.Date" language="java"%>
<html>
<head>
<title>图书登记</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/style.css" rel="stylesheet">
</head>
<script language="javascript" src="js/checkform.js"></script>
<body>
<table width="777" border="0" align="center" cellpadding="0"
cellspacing="0">
<tr>
<td valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0"
class="tableBorder_LTR">
<tr>
<td height="30" align="center">
<div align="center">
<span class="word_grey"></span>
</div>
</td>
</tr>
</table>
<form action="addBookOperation.htm" method="post"
name="form1">
<table width="84%" border="0" align="center" cellpadding="-2"
cellspacing="-2">
<tr>
<td width="14%" height="27">
书 号:
</td>
<td height="41">
<input name="book_id" type="text" id="bookID2">
</td>
<td height="27">
书 名:
</td>
<td height="27">
<input name="book_name" type="text" id="bookname2">
</td>
</tr>
<tr>
<td height="27">
作 者:
</td>
<td height="41">
<input name="writer" type="text" id="writer">
</td>
<td width="15%" height="27">
类别名称:
</td>
<td width="38%" height="27">
<input name="book_type" type="text" id="zishu2">
</td>
</tr>
<tr>
<td height="27">
出 版 社:
</td>
<td height="41">
<input name="book_concern" type="text" id="book_concern">
</td>
<td height="27">
发行日期:
</td>
<td height="41">
<input name="publish_date" type="text" id="publish_date">
</td>
</tr>
<tr>
<td height="41">
操 作 员:
</td>
<td height="41">
<input name="czy" type="text" id="czy">
</td>
<td height="41">
价 格:
</td>
<td height="41">
<input name="price" type="text" id="price">
(元)
</td>
</tr>
<tr>
<td height="41">
入库数量:
</td>
<td height="41">
<input name="book_count" type="text" id="book_count">
</td>
<td height="41">
入库时间:
</td>
<td height="41">
<input name="reg_date" type="text" id="reg_date"
value="<%=new Date(System.currentTimeMillis())%>"
readonly="yes">
</td>
</tr>
<tr>
<td height="103">
图书简介:
</td>
<td colspan="3">
<span class="style5"> </span>
<textarea name="remark" cols="65" rows="5" id="remark"></textarea>
</td>
</tr>
<tr>
<td height="38" colspan="4" align="center">
<input name="Button" type="submit" value="保存"
onClick="return mycheck(form1)">
<input name="Submit2" type="reset" value="重置">
</td>
</tr>
</table>
</form>
</td>
</tr>
<tr>
<td colspan="1" align="center">
${result }
</td>
</tr>
</table>
</body>
</html>