首页 > 编程 > ASP > 正文

ASP 递归调用 已知节点查找根节点的函数

2024-05-04 11:08:40
字体:
来源:转载
供稿:网友
已知节点查找根节点的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 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表