既知のノードのルート ノードを検索するための asp 関数のコードをコピーします。コードは次のとおりです。
関数 getTreeRootId(pNodeId)
getSQL = [T_tree_demo] から note_id,parent_id を選択します (note_id='& pNodeId &')
getRs = db.Execute(getSQL) を設定します。
getRs.eof が得られない場合は、
Trim(getRs(parent_id)) = 0 の場合
getTreeRootId = Trim(getRs(note_id))
終了関数
それ以外
getTreeRootId = getTreeRootId(Trim(getRs(parent_id)))
終了の場合
それ以外
getTreeRootId = 0
終了関数
終了の場合
getRs.close
getRs = なしを設定します
終了機能