listbackuparrange.asp

来自「一个学生选棵系统的毕业论文」· ASP 代码 · 共 47 行

ASP
47
字号
<!--#include file="../include/keepHouse.asp"-->
<html>
<head>
<title><%=WebName%>-排课系统</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../include/WebCourseSettlementStyle.Css" rel="stylesheet" type="text/css">
</head>

<body>
<!--#include file="../include/header.asp"-->
<%
sql="select * from BackUpArrangeList"
call openDB()
rs.open sql,conn,1,1
if rs.eof and rs.bof then
	call noInfo("还没有任何备份!")
end if
%>
<table width="55%" border="1" align="center" cellpadding="0" cellspacing="0" >
  <tr>
    <td width="7%">序号</td>
    <td width="67%">备份表名</td>
	<td width="13%">导入备份</td>
	<td width="12%">删除备份</td>
  </tr>
<%
dim Counter
Counter=1
while not rs.eof
%>
  <tr>
    <td><%=Counter%></td>
    <td><%=rs("BACKUP_ID")%></td>
	<td><a href="AnswerImport.asp?LIST_ID=<%=rs("LIST_ID")%>">导入</a></td>
	<td><a href="DelBackUpArrange.asp?LIST_ID=<%=rs("LIST_ID")%>">删除</a></td>
  </tr>
<%
Counter=Counter+1
rs.movenext
wend
call closeDB()
%>
</table>
<!--#include file="../include/footer.asp"-->
</body>
</html>

⌨️ 快捷键说明

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