How to determine TreeView SelectedNode relative position

P

pardesiya

Hello Folks,

I have an asp TreeView which I populate at runtime. When I click on a
node, I want to know what is the position of the selected node under
it's parent (i.e. position relative to it's siblings).

I tried MyTreeView.SelectedNode.Index but get the error:
'System.Web.UI.WebControls.TreeNode' does not contain a definition for
'Index'

Much appreciate any help
pd
 
P

pardesiya

Ok got it!

int iIndex =
MyTreeView.SelectedNode.Parent.ChildNodes.IndexOf(MyTreeView.SelectedNode);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top