-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookCreate.jsp
More file actions
72 lines (70 loc) · 2.75 KB
/
BookCreate.jsp
File metadata and controls
72 lines (70 loc) · 2.75 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
<%@ page language="java" contentType="text/html; charset=euc-kr" pageEncoding="euc-kr"%>
<html>
<head>
<title>도서 등록</title>
</head>
<body>
<center>
<font color="blue" size="6"><b>[도서 등록]</b></font>
<form method="post" action="BookCreateResult.jsp">
<table border="2" cellpadding="10" style="font-size:10pt;font-family:맑은 고딕">
<tr>
<td>카테고리분류 :</td>
<td>
<select name="bookCtg">
<option value="베스트셀러">베스트셀러</option>
<option value="신규 도서">신규 도서</option>
<option value="국내 도서">국내 도서</option>
<option value="해외 도서">해외 도서</option>
</select>
<p>
</td>
</tr>
<tr>
<td>도서 번호 :</td>
<td><input type="text" name="bookId"></td>
</tr>
<tr>
<td>도서 명 :</td>
<td><input type="text" name="bookName"></td>
</tr>
<tr>
<td>도서 가격 :</td>
<td><input type="text" name="price"> 원</td>
</tr>
<tr>
<td>저자 :</td>
<td><input type="text" name="writer"> 지음</td>
</tr>
<tr>
<td>출판사 :</td>
<td><input type="text" name="publisher"> </td>
</tr>
<tr>
<td>판매 상태 :</td>
<td>
<input type="radio" name="bookStatus" value="판매 중">판매 중
<input type="radio" name="bookStatus" value="품절">품절
<input type="radio" name="bookStatus" value="재입고 중">재입고 중
</td>
</tr>
<tr>
<td>상세 설명 :</td>
<td><textarea name="bookContent" rows="5" cols="30"></textarea></td>
</tr>
<tr>
<td>재고수량:</td>
<td><input type="text" name="bookStock"> 권</td>
</tr>
<tr>
<td>도서 리뷰:</td>
<td><textarea name="bookReview" rows="5" cols="30"></textarea></td>
</tr>
</table>
<p>
<input type="submit" value="[도서 등록]">
<input type="reset" value="취 소">
</form>
</center>
</body>
</html>