gusucode.com > ASP+ACCESS学生排课管理系统毕业设计(源代码+论文) > ASP+ACCESS学生排课管理系统毕业设计(源代码+论文)\ASP+SQL学生排课管理系统\ArrangeCourse\ListBackUpArrange.asp

    <!--#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>