已知节点查找根节点的asp函数

代码如下: Function getTreeRootId(pNodeId) getSQL = 'select note_id,parent_id from [T_tree_demo] where note_id='''& pNodeId &'''' Set getRs = db.Execute(getSQL) If Not getRs.eof Then If Trim(getRs('parent_id')) = '0' Then getTreeRootId = Trim(getRs('note_

作者: 来源: 时间: 17-11-23 15:57:53

代码如下:
Function getTreeRootId(pNodeId)
getSQL = "select note_id,parent_id from [T_tree_demo] where note_id=''"& pNodeId &"''"
Set getRs = db.Execute(getSQL)
If Not getRs.eof Then
If Trim(getRs("parent_id")) = "0" Then
getTreeRootId = Trim(getRs("note_id"))
Exit Function
Else
getTreeRootId = getTreeRootId(Trim(getRs("parent_id")))
End If
Else
getTreeRootId = 0
Exit Function
End If
getRs.close
Set getRs = Nothing
End Function
11
22
33
隐藏区块

会员注册

本功能为预留功能,暂不支持注册 ^_^

Login

社交帐号登陆

使用以下任意帐号可登陆本站

Close section
Close

联系我们

关于5UCMS 您有任何需求 均可以留言给我们