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

📄 class_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%">
    
    <tr>
      <td width="100%" background="../Images/admin_table_bg.gif" height="25" colspan="2">
<%
Dim name,proid
proid=Request("proid")
set rs=server.createobject("adodb.recordset")
rs.open "select * from [pro] where id="&proid,conn,1,1
name=rs("pro")
rs.Close
Set rs=nothing
%>
      <p align="center"><b><font color="#FFFFFF"><%=name%>专业班级管理</font></b></td>
    </tr>
    
    <tr>
      <td width="50%" height="15" bgcolor="#D9E6FF" align="center">班级名称</td>
      <td width="50%" height="15" bgcolor="#D9E6FF" align="center">操&nbsp; 作</td>
    </tr>
<%
set rs=server.createobject("adodb.recordset")
rs.open "select * from [class] ",conn,1,1
If rs.RecordCount=0 Then
  
Else
Do While Not rs.EOF
  If rs("proid")=Cint(proid) Then
%>
    

    <tr>
      <td width="50%" height="15" bgcolor="#D9E6FF" align="center"> <%=name&rs("num")%>班</td>
      <td width="50%" height="15" bgcolor="#D9E6FF" align="center">
      <a href="class_edit.asp?id=<%=rs("id")%>&proid=<%=rs("proid")%>">[修 改]</a></td>
    </tr>
<%
End If
rs.MoveNext
Loop
End If
rs.Close
Set rs=nothing
%>
    
    <tr>
      <td width="100%" bgcolor="#D9E6FF" height="15" colspan="2">
      <p align="center"><a href="class_menu.asp">[返 回]</a> | <a href="class_add.asp">[添 加]</a></td>
    </tr>
  </table>
  </center>
</div>

</body>

</html>

⌨️ 快捷键说明

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