📄 ach_manager1.asp
字号:
<!--#include file="conn.asp"-->
<%
if session("user")="" then
response.write "<script>alert('您无此权限');document.location.href='index.asp';</script>"
response.end
end if
%>
<%
set rst=server.createobject("adodb.recordset")
sql="select * from ach where user_testnumber='"&session("user")&"'"
rst.open sql,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>研究生成绩管理</title>
<link rel="stylesheet" href="style.css">
</head>
<body topmargin="0">
<!--#include file="top.asp"-->
<div align="center">
<center>
<table width="738" height="35">
<td background="images/top_1.jpg"> <font color="#FF0000"><%=rst("user_name")%></font>同学的成绩信息</td></table>
</center>
</div>
<div align="center">
<center>
<table border="0" width="700" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">
<table border="1" width="730" bordercolorlight="#000000" cellspacing="0" cellpadding="5" bordercolordark="#FFFFFF">
<tr>
<td width="90" bgcolor="#EBE9FE" align="center">学号</td>
<td width="60" bgcolor="#EBE9FE" align="center">姓名</td>
<td width="70" bgcolor="#EBE9FE" align="center">班级</td>
<td width="110" bgcolor="#EBE9FE" align="center">考试场次</td>
<td width="110" bgcolor="#EBE9FE" align="center">考试科目</td>
<td width="90" bgcolor="#EBE9FE" align="center">科目类型</td>
<td width="100" bgcolor="#EBE9FE" align="center">任课教师</td>
<td width="50" bgcolor="#EBE9FE" align="center">成绩</td>
</tr>
<%if not rst.eof then%>
<%do while not rst.eof%>
<tr>
<td width="90" align="center"><%=rst("user_number")%></td>
<td width="60" align="center"><%=rst("user_name")%></td>
<td width="70" align="center"><%=rst("user_class")%></td>
<td width="110" align="center"><%=rst("testno")%></td>
<td width="110" align="center"><%=rst("subject")%></td>
<td width="90" align="center"><%=rst("subject_type")%></td>
<td width="100" align="center"><%=rst("teacher_name")%></td>
<%if rst("ach")>=60 then%>
<td width="50" align="center"><%=rst("ach")%></td>
<%else%>
<td width="50" align="center"><font color=red><%=rst("ach")%></font></td>
<%end if%>
</tr>
<%rst.movenext%>
<%loop%>
<%else%>
<tr>
<td width="388" colspan="9" align="center">查无此记录</td>
</tr>
<%end if
rst.close
set rst=nothing
%>
</table>
</table>
</div>
</center>
<p></p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -