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

📄 getattachsstring.asp

📁 功能齐全的oa系统
💻 ASP
字号:
<%
Function GetAttachsString(ObjDB,Attachs)
	Dim ObjRS,StrSQL
	Dim AttachIDs
	Dim StrTmp,ShowAttachs
	If IsNull(Attachs) Then Attachs = ""
	If Attachs = "" Then
		ShowAttachs = ""
		Exit Function
	End If
	AttachIDs = "'" & Replace(Attachs,",","','") & "'"
	StrSQL = "Select * From t_OA_Attach Where KeyPath In (" & AttachIDs & ")"
	Set ObjRS = ObjDB.Execute(StrSQL)
	While Not ObjRS.Eof
		StrTmp = StrTmp & ObjRS("FileName") & " "
		ObjRS.MoveNext
	Wend
	GetAttachsString = StrTmp
End Function
%>

⌨️ 快捷键说明

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