📄 displayresult.asp
字号:
<!--#include file="conn.inc"-->
<link rel="stylesheet" type="text/css" href="css.css">
<%
vid = request("userid")
sql="select * from student_score where User_ID="&vid&" and Paper_ID=" & request("testid")
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,3,2
sql1 = "select * from score_tand where Paper_ID = "&request("testid")
set rs1=server.createobject("adodb.recordset")
rs1.open sql1,conn,3,2
IF not rs1.eof then
pr = rs1("PaperScoreRate")
ur = rs1("UsualScoreRate")
rs("Score")=pr*rs("PaperScore")/100 + ur*rs("UsaScore")/100
end if
rs1.close
set rs1 = nothing
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
<link rel="stylesheet" type="text/css" href="../exam_online/程序代码/程序代码/css.css">
</head>
<body>
<table border="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="100%" height="30" style="border-left-style: solid; border-left-width: 0; border-right-style: solid; border-right-width: 0; border-top-style: solid; border-top-width: 0; border-bottom: 1px solid #000000">
<img border="0" src="images/result.jpg"></td>
</tr>
<tr>
<td width="100%" height="30">祝贺您,您已经成功完成考试</td>
</tr>
<tr>
<td width="100%" height="30">开始答题的时间是:<%=rs("Stu_Start_time")%></td>
</tr>
<tr>
<td width="100%" height="30">结束答题的时间是:<%=rs("Stu_End_time")%></td>
</tr>
<tr>
<td width="100%" height="30">本次考试的试卷得分为:<b><font color="#FF0000" size="3"><%=rs("PaperScore")%></font></b>分</td>
</tr>
<tr>
<td width="100%" height="30">你的平时成绩得分为:<b><font color="#FF0000" size="3"><%=rs("UsaScore")%></font></b>分</td>
</tr>
<tr>
<td width="100%" height="30">你的总评成绩得分为:<b><font color="#FF0000" size="3"><%=rs("Score")%></font></b>分</td>
</tr>
<tr>
<td width="100%" style="border-left-style: solid; border-left-width: 0; border-right-style: solid; border-right-width: 0; border-top: 1px solid #000000; border-bottom-style: solid; border-bottom-width: 0" height="60">
<p align="center"><a href="exam_online.asp">参加其他科目的考试</a></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -