result.asp

来自「这是一个在线考试系统,是基于ASP+ACCESS的」· ASP 代码 · 共 31 行

ASP
31
字号
<!--#include file="conn.asp"-->
<html>
<head>
<title>考试界面——成绩</title>
</head>
<!--#include file="Checkuser.asp"-->
<body background=images/backimage.gif bgcolor="#FFFFFF">
<table width="75%" border="0" align="center" height="371">
  <tr>
    <td height="406"> 
<%
studentname=session("studentname")
score=session("score")
total=session("total")
rate=score/total
width=150*rate
width2=150*(1-rate)
response.write("<center><FONT size=4 color=red face=宋体>"&studentname&"</font>您好!您的考试成绩为:"&score&"分,总分为"&total&"分</center><br>")
%>
<center>
<img src="images/bar2.gif" height="10" width="<%=width%>"><img src="images/bar1.gif" height="10" width="<%=width2%>"><%rate=round(100*rate,2)%>&nbsp;<%=rate%>%
</center>
<p align=center><a href="default.asp"><font color=red size=+0 face=楷体>返回登录界面</font></a></p>
<p align=center><a href="selectsubject.asp"><font color=red size=+0 face=楷体>返回考试界面继续考试</font></a></p>
	</td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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