I am able to find a parent node using the following code :
TreeNode node = TreeViewProducts.FindNode(nodeID);
Similarly if I want to find a child node in a treeview how do I do that.
Is there a way to find it as above rather than looping through all the nodes in the treeview
Thanks
You can use
ChildNodes
collection.