Working with treeview

  • Thread starter Thread starter Mark Goldin
  • Start date Start date
M

Mark Goldin

After treeview is loaded into the browser I'd like to select a particular
node and expend it programmatically. How can I do that?

Thanks
 
The easiest way is to set the expand property to true on the selected node.
You would need to obtain or set the node first. And then set it's expand
property to true. There are ample examples of this in
microsoft.public*.webcontrols as a starting point.
 
Mark said:
After treeview is loaded into the browser I'd like to select a particular
node and expend it programmatically. How can I do that?

Thanks
As there's no treeview by default in asp.net, which control are you
using? Each control has its own documentation and API...
 
Back
Top