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

📄 assembletestpaper.asp

📁 在线考试系统
💻 ASP
字号:
<?xml version="1.0" encoding="gb2312"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!---#include file="conn.asp"--->
<link href="main.css" rel="stylesheet" type="text/css">
<script src="../Inc/common.js"></script>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<h3 align="center">组卷管理</h3>
<div align="center"><a href="AssembleTestPaperAdd.asp">添加新试卷模板</a></div>
<hr width="100%">
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="2">
  <tr align="center" bgcolor="#F3F3F3"> 
    <th width="405" bgcolor="#F3F3F3">名称</th>
    <th colspan="4">操作</th>
  </tr>
  <%
  set rst=conn.execute("select id,TestPaperTempletName from TestPaperTemplet")
  while not rst.eof
  %>
  <tr align="center" bgcolor="#E0F1FC"> 
    <td><%=rst("TestPaperTempletName")%></td>
    <td width="62"><a href="#" onclick="javascript:openmodeless('TestPaperTempletInfo.asp?oper=Templet&id=<%=rst("id")%>','d',250,230)">查看</a></td>
    <td width="69"><a href="AssembleTestPaperModify.asp?id=<%=rst("id")%>">修改</a></td>
    <td width="68"><a href="AssembleTestPaperUpdate.asp?oper=del&id=<%=rst("id")%>" onclick="return confirm('确定要删除吗?');">删除</a></td>
    <td width="78"><a href="#" onclick="javascript:openmodal('TestPaperSet.asp?id=<%=rst("id")%>','d',260,200)">生成</a></td>
  </tr>
  <%
  rst.movenext
  wend
  rst.close()
  conn.close()
  set rst=nothing
  set conn=nothing
  %>
</table>


</body>
</html>

⌨️ 快捷键说明

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