📄 advancesearch.asp
字号:
<!-- #include file="connect.asp" -->
<html>
<head>
<title>高级查询</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="style.css" rel=stylesheet>
</head>
<body background="images/bj.gif" topmargin="0">
<p align="center">
<img border="0" src="images/aserch.gif">
<div align="center">
<center>
<table border="1" width="637" height="317" cellspacing="0" cellpadding="0" bordercolorlight="#33CCFF" bordercolordark="#F9F8F7">
<tr>
<td width="270" height="5" bgcolor="#33CCFF">单个考生查询:</td>
<td width="351" height="5" colspan="2" bgcolor="#33CCFF" align="left">多个考生复杂查询:</td>
</tr>
</center>
<tr>
<td width="270" height="293" rowspan="6" valign="top" bgcolor="#F9F8F7">
<form method="POST" action="searchscore.asp?id=1" name="form1">
<div align="center">
<p align="center">准考证号:
<input type="text" name="StudentID" size="16" value="">
</div>
<div align="center">
<p align="center"><br>
考试科目:
<select name="Subject">
<%rs.Open "Select * From 试卷信息 Order By 创建日期 DESC", conn, 1,1
while not rs.eof%>
<option value="<%=rs("试卷名称")%>"><%=rs("试卷名称")%></option>
<%
rs.movenext
wend
rs.close%>
</select>
<br>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="清除">
</div></form></td>
<center>
<td width="351" height="13" colspan="2" align="left" bgcolor="#F9F8F7">
<p align="center">
查询所有考生:</p>
</td>
</tr>
</center>
<tr>
<td width="351" height="65" colspan="2" align="left">
<form method="POST" action="searchscore.asp?id=2" name="form2">
<div align="center">
<p align="center">
<br>
考试科目:
<select name="Subject">
<%rs.Open "Select * From 试卷信息 Order By 创建日期 DESC", conn, 1,1
while not rs.eof%>
<option value="<%=rs("试卷名称")%>"><%=rs("试卷名称")%></option>
<%
rs.movenext
wend
rs.close%>
</select>
</div>
<div align="center">
<p align="center">
<input type="radio" name="direction" value="-1">降序
<input type="radio" name="direction" value="1">升序
<br>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="reset" value="清除">
</div></form>
</td>
</tr>
<center>
<tr>
<td width="351" height="14" colspan="2" align="left" bgcolor="#F9F8F7">
<p align="center">查询部分考生:</td>
</tr>
</center>
<tr>
<td width="351" height="75" colspan="2" align="left">
<form method="POST" action="searchscore.asp?id=3" name="form3">
<div align="center">
<p align="center">
考试科目:
<select name="Subject">
<%rs.Open "Select * From 试卷信息 Order By 创建日期 DESC", conn, 1,1
while not rs.eof%>
<option value="<%=rs("试卷名称")%>"><%=rs("试卷名称")%></option>
<%
rs.movenext
wend
rs.close%>
</select>
<p>列出
<input type="text" name="limit" size="10" value="">分以上的考生<br>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="清除">
</div></form></td>
</tr>
<center>
</center>
</table>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -