0
votes
ASP.NET TreeView and Selecting the Selected Node
When you're adding nodes to the tree in the _TreeNodePopulate() event, set the .SelectionAction property on the node.
TreeNode newCNode;
newCNode = new TreeNode("New Node");
newCNo …
