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

📄 stu_search.asp

📁 C# SQL 齐齐哈尔职业学院学生成绩管理系统
💻 ASP
字号:
<!--#include file="chkadmin.asp"-->
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css.css" rel="stylesheet" type="text/css">
<title>学生成绩管理系统</title>
</head>

<body>

<div align="center">
  <center>
  <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#ffffff" width="100%" height="82">
    
    <tr>
      <td width="100%" background="../Images/admin_table_bg.gif" height="25" align="center">
      <p align="center"><font color="#FFFFFF"><b>学生信息查询</b></font></td>
    </tr>
    
    <tr>
      <td width="100%" height="34" bgcolor="#D9E6FF" align="center">
      <form method="POST" action="stu_name.asp">

        <br>
        学号:<input type="text" name="xid" size="10" tabindex="1">

        <input type="submit" value="执行查询操作" name="B1" tabindex="2"></form>
      </td>
    </tr>
    
    <tr>
      <td width="100%" bgcolor="#D9E6FF" height="34" align="center">
      <form method="POST" action="stu_pmc.asp">
        <br>
      <select size="1" name="classid" tabindex="3">
<%
set fs=server.createobject("adodb.recordset")
fs.open "select * from [class]",conn,1,1
set rs=server.createobject("adodb.recordset")
Do while Not fs.EOF
  rs.open "select * from [pro] where id="&fs("proid"),conn,1,1
  Response.Write "<option Value="& fs("id") & ">" &rs("xi")&rs("pro")&fs("num")&"班</option>"  
  rs.Close
fs.MoveNext
Loop
Set rs=nothing
fs.Close
Set fs=nothing
%>
      </select>
        <input type="submit" value="列出该班名单" name="B1" tabindex="4"></form>
      </td>
    </tr>
  </table>
  </center>
</div>

</body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -