⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delete.asp

📁 功能齐全的oa系统
💻 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 + -