vote up 0 vote down star

Hi,

I can an xml string loaded into an XMLdoc and I need to show it a tree view. Can someone please provide some tips of how I can populate the treeview in an ASP.Net page?

thanks in advance.

flag

2 Answers

vote up 0 vote down

From Binding Data to the TreeView Web Server Control:

You can bind a TreeView control to an XML file by creating an XmlDataSource control that represents the XML file and then assigning that XmlDataSource to your TreeView control.

link|flag
vote up 0 vote down

A guide how to write the code will be appreciated. Currently I have the following code but it is not working:

        XmlDataSource XMLds = new XmlDataSource();
        XMLds.Data = txtRules.Text;
        XMLds.DataBind();
        trwDroolsRules.DataSource = XMLds;
        trwDroolsRules.DataBind();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.