📄 delete.asp
字号:
<%Option explicit%>
<!--#include virtual ="Include/DataEnvi.asp"-->
<!--#include file ="MoveToDustbin.asp"-->
<%
Dim ObjDB,ObjRS,StrSQL
Dim IntBoxID,ArrIDs
Dim IntIDs,i
IntBoxID = Request.QueryString ("BoxID")
IntIDs = Request.QueryString ("IDs")
ArrIDs = Split(IntIDs,",")
Set ObjDB = Server.CreateObject ("ADODB.Connection")
OpenDB ObjDB
For i = LBound(ArrIDs) To UBound(ArrIDs)
If ArrIDs(i)<>"0" Then Call MoveToDustbin(ObjDB,IntBoxID,ArrIDs(i))
Next
ObjDB.Close
Set ObjDB = Nothing
%>
<Script Language = Javascript>
parent.frmToolbar.doList(<%=IntBoxID%>)
</Script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -