📄 delworknet.asp
字号:
<!--#include file="../mzfunc.asp"-->
<!--#include file="admintop.asp"-->
<!--#include file="isadmin.asp"-->
<%
dim id,delfile,i,j,allfile
id=request.querystring("id")
if id="" or isnull(id) then
response.write"<script>alert('对不起,操作符丢失,\n此页面不支持刷新');history.back();</script>"
else
sql="select workfile from worknet where id in ("&id&")"
set rs=conn.execute(sql)
end if
delfile=rs.getrows
for i=0 to ubound(delfile,2)
if delfile(0,i)<>"" or isnull(delfile(0,i))<>true then
allfile=split(delfile(0,i),";")
for j=0 to ubound(allfile)
response.write"<script>alert('"&delbackdb(allfile(j))&"');</script>"
next
end if
next
sql="delete from worknet where id in ("&id&")"
conn.execute(sql)
%>
<table width="350" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<th height="25" bgcolor="#B1E1F3">删除动作完成</th>
</tr>
<tr>
<td>删除的数据将是永久性丢失,删除时请谨慎处理</td>
</tr>
<tr>
<td><div align="center"><a href="admin_worknet.asp">【返回】</a></div></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -