ASP 递归调用 已知节点查找根节点的函数
ASP 递归调用 已知节点查找根节点的函数
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:FunctiongetTreeRootId(pNodeId)getSQL="selectnote_id,parent_id...

复制代码 代码如下:

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

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新ASP教程学习
热门ASP教程学习
编程开发子分类