shenheyijian.asp
来自「网络考试系统最终备份」· ASP 代码 · 共 47 行
ASP
47 行
<!--#include file="conn.inc"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>审核意见</title>
</head>
<body>
<%
sql="select * from waitforpass where objid="&request("TempPaperid")
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,3,2
%>
<table border="1" cellspacing="1" style="border-collapse: collapse" bordercolor="#C0C0C0" width="277" id="AutoNumber1">
<tr>
<td nowrap colspan="5" bgcolor="#E1E1E1" align="center"><b><font color="#003399">
试卷审核信息</font></b></td>
</tr>
<tr>
<td nowrap bgcolor="#E1E1E1" align="center" width="52">试卷编号</td>
<td width="212" colspan="4" align="center"><%=rs("objid")%> </td>
</tr>
<tr>
<td nowrap bgcolor="#E1E1E1" align="center">试卷名称</td>
<%
paperid=rs("objid")
sql1="select * from paper_info where PaperID="&paperid&""
set rs1=server.createobject("adodb.recordset")
rs1.open sql1,conn,3,2
%>
<td align="center" colspan="4"><%=rs1("PaperName")%></td>
<%rs1.close%>
</tr>
<tr>
<td height="254" align="center" nowrap bgcolor="#E1E1E1">审核意见</td>
<td align="center" colspan="4"><div align="center">
<textarea name="" cols="28" rows="18"><%=rs("passadvice")%></textarea>
</div></td>
</tr>
<%rs.close%>
</table>
<p align="center">
<input type="button" onclick="self.close();" value="关闭窗口" name="B3" class="s02"></p>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?