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

📄 kebiaoclass.asp

📁 关于学生成绩的管理系统
💻 ASP
字号:
<!--#include file="conn.asp"-->
<html>
<head>
<title>录入班级信息</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000" background="imags/kabg.gif">
<p align="center"><b>班级信息录入</b></p>
<form name="form1" method="post" action="addc.asp">
  <div align="center">
    <table width="445" border="1">
      <tr> 
        <td height="41" width="85">系名:</td>
        <td height="41" width="344"> 
          <select name="xino" size="1">
          <option value="--选择系--" selected>--选择系--</option>
          <% set rs=server.createobject("ADODB.Recordset")
			sql="select * from 系"
			rs.open sql,conn,1,1
			do while not rs.eof  
			%>
          <option value="<%=rs("xino")%>"><%=rs("xiname")%></option>
          <% rs.movenext
			 loop
			 %>
        </select>

        </td>
      </tr>
      <tr> 
        <td height="43" width="85">专业:</td>
        <td height="43" width="344"> 
           <select name="zhuanyeno" size="1">
          <option value="--选择专业--" selected>--选择专业--</option>
          <% set rs=server.createobject("ADODB.Recordset")
			sql="select * from 专业"
			rs.open sql,conn,1,1
			do while not rs.eof  
			%>
          <option value="<%=rs("zhuanyeno")%>"><%=rs("zhuanye")%></option>
          <% rs.movenext
			 loop
			 %>
		</select> 
        </td>
      </tr>
      <tr> 
        <td height="41" width="85">年绩: </td>
        <td height="41" width="344"> 
          <select name="jino" size="1">
            <option selected>99级</option>
            <option>00级</option>
            <option>01级</option>
            <option>02级</option>
          </select>
        </td>
      </tr>
      <tr> 
        <td height="38" width="85">班级:</td>
        <td height="38" width="344"> 
          <select name="banno" size="1">
            <option selected>01班</option>
            <option>02班</option>
            <option>03班</option>
          </select>
        </td>
      </tr>
      <tr> 
        <td height="36" width="85">学生人数:</td>
        <td height="36" width="344"> 
          <input type="text" name="stnum" size="20">
        </td>
      </tr>
      <tr> 
        <td height="38" width="85">教室:</td>
        <td height="38" width="344"> 
          <input type="text" name="room" size="20">
          (如:教120,科122)</td>
      </tr>
      <tr> 
        <td height="20" colspan="2"> 
          <div align="center"> 
            <input type="submit" name="Submit" value="提交">
          </div>
        </td>
      </tr>
    </table>
  </div>
</form>
<p align="center"><font color="#330000"><a href="keadd1.asp"><img src="imags/0000005.gif" width="137" height="30" border="0"></a></font></p>
</body>
</html>

⌨️ 快捷键说明

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