ksleft.asp

来自「考试系统asp环境下开发,access数据库」· ASP 代码 · 共 34 行

ASP
34
字号
<!-- #include file="cookies.asp" -->
<!-- #include file="conn.asp" -->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from kstype where id="&request.cookies("kstypeid")
rs.open sql,conn,1,1
if not rs.eof then
dim kstype,kstime
kstype=trim(rs("kstype"))
kstime=trim(rs("kstime"))
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body bgcolor="#CCCCCC" text="#000000">
<div align="center">
  <p><b><font size="5">开始考试</font></b></p>
  <p>考生姓名:<%=request.cookies("studentname")%></p>
  <p>考试内容:<%=kstype%></p>
  <p>考试时间:<%=kstime%>分钟</p>
  <p><font color="#FF0000"><b>考试时间到,系统自动交卷。</b></font></p>
  <p><b><font color="#FF0000">请自行把握好时间!</font></b></p>
</div>
</body>
</html>

⌨️ 快捷键说明

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