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

📄 candel.asp

📁 功能齐全的oa系统
💻 ASP
字号:


<%
	Function CanDel(ObjDB,ComMsgID)
	
	Dim ObjRS,StrSQL
	Dim IntComMsgID
	Dim IntCount,IntIsDel
	Dim IntIsPack
	Dim IntState
	
	IntComMsgID = ComMsgID
	
	StrSQL = "Select Count(*) as IntCount from T_CRM_Stock_Application_Delete where ComMsgID = " & IntComMsgID
	Set ObjRS = ObjDB.execute (StrSQL)
	IntCount = ObjRS("IntCount")
	ObjRS.close
	StrSQL = "Select Count(*) as IntIsDel from T_CRM_Stock_Application_Delete where ComMsgID = " & IntComMsgID & " and IsDel = 1"
	Set ObjRS = ObjDB.execute (StrSQL)
	IntIsDel = ObjRS("IntIsDel")
	ObjRS.close
	Set ObjRS = Nothing
	
	If IntCount = IntIsDel Then
		CanDel = True
	Else
		CanDel = False
	End If
	
	End Function
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -