📄 clear_step2.asp
字号:
<%@ CODEPAGE = "936" %>
<!--#include file="inc_config.asp"-->
<%
'获取备份条件
offyear =trim(Request("offyear"))
offmonth =trim(Request("offmonth"))
offday =trim(Request("offday"))
offtime=offyear & "-" & offmonth & "-" & offday
if (not isdate(offtime)) then Response.Redirect "help.asp?error=请正确填写要备份数据的截止日期。"
force =Request("force")
set conn=server.createobject("adodb.connection")
conn.Open constr
sql = "delete from views where mem_id = "& uid & " and vtime < '"& offtime &"'"
conn.Execute(sql)
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Copyright" content="Ajiang http://www.ajiang.net">
<title><%=countname%>-数据清理-第三步-清理</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body topmargin=5 rightmargin=0 leftmargin=0 vlink=#000000>
<!--#include file="inc_top.asp"-->
<br>
<table width="500" cellspacing="0" align="center" cellpadding="0" border="0">
<tr><td colspan="3"><IMG src="images/photoup.gif"></td></tr>
<tr height="30">
<td width="1" class="backs"></td>
<td width="498" class="backq">
<IMG src="images/tb_title.gif" align=absMiddle> ∷∷∷ 数据清理-第三步 □ 清理指定记录 ∷∷∷<br>
<table width="90%" align=center>
<tr>
<td>
<p class="p1"><%=sql%>
<p class="p1"><br>
<p class="p1">已经完成了数据清理。
<p class="p1"><br><br>
</td></tr></table>
</td>
<td width="1" class="backs"></td>
</tr>
<tr><td colspan="4"><IMG src="images/photodown.gif"></td></tr>
</table>
<br><!--#include file="inc_bottom.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -