?? index.asp
字號:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>圖書館管理系統</title>
<link href="css.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.style1 {font-size: 16px}
-->
</style>
</head>
<body>
<!--#include file="conn.asp"-->
<form action="search.asp" method="post" enctype="application/x-www-form-urlencoded" name="form1" target="_self">
<center>
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="150"><!--#include file="top.asp"--></td>
</tr>
<tr>
<td align="center" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" class="tb">
<tr>
<td height="260" align="center" valign="middle"><table width="500" border="0" cellspacing="0" cellpadding="3">
<tr align="center" valign="middle" >
<td height="30" align="right"><img src="img/cx.gif" width="64" height="64"></td>
<td height="30" align="left"><span class="style1"> 圖書查詢</span></td>
</tr>
<tr>
<td width="177" height="25" align="right">關鍵字:</td>
<td width="311" height="25" align="left"><input name="key" type="text" id="key" size="25" value=""></td>
</tr>
<tr>
<td height="25" align="right">查詢類型:</td>
<td height="25" align="left"><select name="type" id="type">
<option value="1" selected="selected">書名</option>
<option value="2">作者</option>
<option value="3">出版社</option>
<option value="4">ISBN</option>
</select></td>
</tr>
<tr>
<td height="25" align="right">圖書類別:</td>
<td height="25" align="left"><select name="lb" id="lb">
<option selected value="">所有類別</option>
<%set rslb=conn.execute("select * from lb order by id asc")
while not rslb.eof
%>
<option value="<%=rslb("id")%>"><%=rslb("name")%></option>
<%rslb.movenext
wend %>
</select></td>
</tr>
<tr>
<td height="25" align="right">結果排序:</td>
<td height="25" align="left"><label>
<input name="px" type="radio" id="px_1" value="2" checked="checked" />
降序
<input type="radio" name="px" value="1" id="px_0" />
升序</label>
<label> </label></td>
</tr>
<tr align="center" valign="middle">
<td height="40" colspan="2"><input type="submit" name="Submit" value=" 查 詢 ">
<input type="reset" name="Submit2" value=" 重 置 "></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td height=""><!--#include file="bottom.asp"--></td>
</tr>
</table>
</center>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -