tags:

views:

58

answers:

1

Hi there,

i got a problem with a TreeView and a XmlDataSource! The Problem is that the TreeView only shows the node-names without values!

alt text

The Xml-File which is the XmlDataSource:

alt text

My code:

konferenz.Save("d:/datafortreeview.xml");
    XmlDataSource xds = new XmlDataSource();
    xds.DataFile = "d:/datafortreeview.xml";


    TreeAnzeige.DataSource = xds;
    TreeAnzeige.DataBind();

I hope someone could help to show the values in the TreeView!

A: 

Perhaps this link could help you out: link

Morgan