⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.asp

📁 自己做的毕业设计
💻 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">&nbsp;&nbsp;&nbsp;&nbsp; 图书查询</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=" 查 询 ">
             &nbsp; <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 + -