Tree view
-
I have a tree view in my page. I want to show the name of of selected node along with it's parent node. I am using the folleing event. I want my text of lable like follwing when I click child node aaa AA--> aaa. Where AA is parent node's text and aaa is child node's text. I don't want to use Sitemappath.
-
I have a tree view in my page. I want to show the name of of selected node along with it's parent node. I am using the folleing event. I want my text of lable like follwing when I click child node aaa AA--> aaa. Where AA is parent node's text and aaa is child node's text. I don't want to use Sitemappath.
when you clicked the Node Get Parent Nodes of Selected Node and Show it on label. Example. TreeNode ParentNode= new TreeNode(); ParentNode=this.treeviewCtrl.SelectedNode.Parent string strFullNode=ParentNode.Text + ">>"+ this.treeviewCtrl.SelectedNode.Text