📄 candel.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 + -