📄 bookmanager.asp
字号:
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>书籍信息添加与修改</title>
<link rel="stylesheet" href="style.css" type="text/css">
<style type="text/css">
<!--
table {
font-size: 9pt;
text-decoration: none;
border: 1px solid #000000;
}
-->
</style>
</head>
<body>
<div align="center"><form method="POST" action="--WEBBOT-SELF--">
<table border="0" width="300" id="table1" cellspacing="1">
<tr>
<td align="center" colspan="2" bgcolor="#006699">
<font color="#FFFFFF">书籍信息<%if Request("op")="add" then
Response.write "添加"
else
Response.write "修改"
end if%></font></td>
</tr>
<tr>
<td align="right" width="87">馆藏号</td>
<td width="204">
<input type="text" name="bookid" size="26" value="<%=bookid%>"></td>
</tr>
<tr>
<td align="right" width="87">ISBN</td>
<td width="204">
<input type="text" name="isbn" size="26" value="<%=isbn%>"></td>
</tr>
<tr>
<td align="right" width="87">书名</td>
<td width="204">
<input type="text" name="bookname" size="26" value="<%=bookname%>"></td>
</tr>
<tr>
<td align="right" width="87">作者</td>
<td width="204">
<input type="text" name="bookauthor" size="26" value="<%=bookauthor%>"></td>
</tr>
<tr>
<td align="right" width="87">出版社</td>
<td width="204">
<input type="text" name="publish" size="26" value="<%=publish%>"></td>
</tr>
<tr>
<td align="right" width="87">复本数</td>
<td width="204">
<input type="text" name="copycount" size="26" value="<%=copycount%>"></td>
</tr>
<tr>
<td align="right" width="87">语种</td>
<td width="204">
<select size="1" name="booklanguage" class="Formtext">
<option selected>中文</option>
<option>英语</option>
<option>法语</option>
<option>俄语</option>
<option>韩语</option>
<option>日语</option>
</select></td>
</tr>
<tr>
<td align="right" width="87">文献类型</td>
<td width="204"><select size="1" name="booktype" class="Formtext"></select></td>
</tr>
<tr>
<td align="right" width="87">版次</td>
<td width="204">第<select size="1" name="edition" class="Formtext">
<option selected>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select>版</td>
</tr>
<tr>
<td width="87"> </td>
<td width="204">
<input type="button" value="保存" name="B3" class="FormText">
<input type="button" value="取消" name="B2" class="FormText"></td>
</tr>
</table></form>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -