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

📄 jec_manage.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="69">
    
    <tr>
      <td width="102%" background="../Images/admin_table_bg.gif" height="24" colspan="6">
      <p align="center"><font color="#FFFFFF"><b>考试类型</b></font></td>
    </tr>
    
    <tr>
      <td width="16%" height="15" bgcolor="#D9E6FF" align="center">所属专业</td>
      <td width="16%" height="15" bgcolor="#D9E6FF" align="center">考试编号</td>
      <td width="16%" height="15" bgcolor="#D9E6FF" align="center">考试名称</td>
      <td width="17%" height="15" bgcolor="#D9E6FF" align="center">科目数</td>
      <td width="17%" height="15" bgcolor="#D9E6FF" align="left">
      <p align="center">科目列表</td>
      <td width="17%" height="15" bgcolor="#D9E6FF" align="center">操 作</td>
    </tr>
<%
Dim j(8),sid
set rs=server.createobject("adodb.recordset")
rs.open "select * from [jec] ",conn,1,1
If rs.RecordCount=0 Then
  
Else
Do While Not rs.EOF
%>
    
    <tr>
      <td width="16%" height="14" bgcolor="#D9E6FF" align="center"> 
<%
set fs=server.createobject("adodb.recordset")
fs.open "select * from [pro] where id="&rs("proid"),conn,1,1
Response.Write fs("pro")
fs.Close
Set fs=nothing
%>    
      </td>
      <td width="16%" height="14" bgcolor="#D9E6FF" align="center"><%=rs("id")%></td>
      <td width="16%" height="14" bgcolor="#D9E6FF" align="center"><%=rs("jec")%></td>
      <td width="17%" height="14" bgcolor="#D9E6FF" align="center"><%=rs("jecsum")%></td>
      <td width="17%" height="14" bgcolor="#D9E6FF" align="left">
      <p align="center"><a href="jec_view.asp?id=<%=rs("id")%>">[查看科目列表]</a></td>
      <td width="17%" height="14" bgcolor="#D9E6FF" align="center">
      <a href="jec_edit.asp?id=<%=rs("id")%>">[修 改]</a></td>
    </tr>
    
<%
rs.MoveNext
Loop
End If
rs.Close
Set rs=nothing
%>
  
    
    <tr>
      <td width="102%" bgcolor="#D9E6FF" height="15" colspan="6">
      <p align="center"><a href="jec_add.asp">[添 加]</a></td>
    </tr>
  </table>
  </center>
</div>

</body>

</html>

⌨️ 快捷键说明

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