📄 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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -