简体   繁体   中英

how to get the last child of the parent node in Tree View using asp.net?

I have created tree view in asp.net.I want to get the last child node of the current selected Parent Node.

Please Guide me get out of this issue?

use this code to get the last child node in the current selected node:

     TreeNode t=TreeView1.SelectedNode.ChildNodes[TreeView1.SelectedNode.ChildNodes.Count - 1];

Hope this helped you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM