📄 default.asp
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>学生成绩查询系统</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<table width="700" align="center" >
<tr>
<td><div align="center"><img src="images/logo.gif" width="351" height="150"></div></td>
</tr>
<tr>
<td background="images/03.gif"> </td>
</tr>
<tr>
<td bgcolor="#CCCCCC">
<div align="center">
<br><br>
<table border="0" width="400" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">
<form method="POST" action="search_ach_5.asp">
<table border="1" width="100%" bordercolorlight="#000000" cellspacing="0" cellpadding="5" bordercolordark="#FFFFFF">
<tr>
<td width="100%" colspan="3" align="left">按准考证号查询学生成绩</td>
</tr>
<tr>
<td width="33%" align="center">准考证号</td>
<td width="33%" align="center">所属考次</td>
<td width="34%"> </td>
</tr>
<tr>
<td width="33%" align="center"><input type="text" name="user_testnumber" size="20"></td>
<%
set rs5=server.createobject("adodb.recordset")
sql5="select * from testno"
rs5.open sql5,conn,1,1
%>
<td width="33%" align="center">
<select size="1" name="testno">
<%do while not rs5.eof%>
<option value="<%=rs5("testno")%>"><%=rs5("testno")%></option>
<%rs5.movenext%>
<%loop%>
</select>
<%rs5.close%></td>
<td width="34%" align="center"><input type="image" value="提交" name="B1" src="images/seach.gif"></td>
</tr>
</table>
</form>
</td>
</tr>
<tr>
<td width="100%">
<form method="POST" action="search_ach_6.asp">
<table border="1" width="100%" bordercolorlight="#000000" cellspacing="0" cellpadding="5" bordercolordark="#FFFFFF">
<tr>
<td width="100%" colspan="3" align="left">按学号查询学生档案</td>
</tr>
<tr>
<td width="30%" align="center">学号:</td>
<td width="40%" align="center"><input type="text" name="user_number" size="18"></td>
<td width="30%" align="center"><input type="image" value="提交" name="B1" src="images/seach.gif"></td>
</tr>
</table>
</form>
</td>
</tr>
<tr>
<td width="100%">
</td>
</tr>
</table>
<br>
</div></td>
</tr>
<tr>
<td align=right><a href="index.asp">后台管理</a> </td>
</tr>
</table><p></p>
<!--#include file="down.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -