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

📄 ksleft.asp

📁 这是ASP的网上考试系统。 希望大家来分享
💻 ASP
字号:
<!-- #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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -