how i can add nodes

  • Thread starter Thread starter zerdust
  • Start date Start date
Z

zerdust

I used IE web controls to use treeview and I want to add webrom.aspx node
but it doesn't work with code. Can anyone send me sample how i can add nodes
with code.
 
given:
TreeNodeCollection nodeCollection; //the collection of nodes you want to
add to
TreeNode node; //the node you want to add
then you simply:
nodeCollection.Add(node);

r.
 
Back
Top