ASP 递归调用 ASP 递归调用 已知节点查找根节点的函数
人气:0想了解ASP 递归调用 已知节点查找根节点的函数的相关内容吗,在本文为您仔细讲解ASP 递归调用的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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_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
加载全部内容