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

📄 cj_edit_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>
  <form method="post" action="cj_edit_ok.asp">
  <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#ffffff" width="100%">
    
    <tr>
      <td width="100%" background="../Images/admin_table_bg.gif" height="25" colspan="2">
      <p align="center"><font color="#FFFFFF"><b>搜索并修改学生成绩</b></font></td>
    </tr>
    
    <tr>
      <td width="11%" height="15" bgcolor="#D9E6FF" align="center">学生系统编号:</td>
      <td width="89%" height="15" bgcolor="#D9E6FF">
      <input type="text" name="stuid" size="16" tabindex="1"> (此编号可在&quot;<font color="#FF0000">基本信息录入</font>&quot;→&quot;<a href="http://127.0.0.1/chengji/manage/stu_search.asp" target="main" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; font-family: 宋体; color: #FF0000; text-decoration: none">查询并修改学生信息</a>&quot;→&quot;<font color="#FF0000">列出班级名单</font>&quot;列表&quot;<font color="#FF0000">系统编号</font>&quot;中查到)</td>
    </tr>
    <tr>
      <td width="11%" height="15" bgcolor="#D9E6FF" align="center">预修改的科目:</td>
      <td width="89%" height="15" bgcolor="#D9E6FF">
      <select name="subid" tabindex="3">
<%
set fs=server.createobject("adodb.recordset")
fs.open "select * from [sub]",conn,1,1
If fs.RecordCount=0 Then
Response.Write "<option>没有科目</option>"
Else
Do While Not fs.EOF
%>      
      <option value=<%=fs("id")%>><%=fs("sub")%></option>
<%
fs.MoveNext
Loop
End If
fs.Close
Set fs=nothing
%>
      </select> (请确认您选择的班级有您选择的科目!)</td>
    </tr>
    <tr>
      <td width="11%" bgcolor="#D9E6FF" height="15" align="center">
      考 试 编 号:</td>
      <td width="89%" bgcolor="#D9E6FF" height="15">
      <input type="text" name="jecid" size="16" tabindex="4"> (此编号可在&quot;<font color="#FF0000">基本信息录入</font>&quot;→&quot;<font color="#FF0000">编辑考试类型</font>&quot;列表&quot;<font color="#FF0000">考试编号</font>&quot;中查到)</td>
    </tr>
    <tr>
      <td width="11%" bgcolor="#D9E6FF" height="15" align="center">
       </td>
      <td width="89%" bgcolor="#D9E6FF" height="15">
      <input type="submit" value="查 询" name="B1" tabindex="5"></td>
    </tr>
    
    </table>
  </form>
  </center>
</div>

</body>

</html>

⌨️ 快捷键说明

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