?
=?ISO-8859-1?Q?Arint=E9?=
I have an xml that looks like this:
<miniblog xmlns:s="miniblog.xsd">
<Blog>
<Date>2007-10-10T12:00:00</Date>
<Diary>This is a journey into sound 10/10</Diary>
</Blog>
<Blog>
<Date>2007-10-03T12:00:00</Date>
<Diary>This is a journey into sound 10/9</Diary>
</Blog>
</miniblog>
in asp the datasource looks like this
<asp:XmlDataSource runat="server" ID="XMLBlogDS" DataFile="~/App_Data/miniblog.xml">
</asp:XmlDataSource>
I want the date info to show up in a TreeView on the left and I want the diary
info to show up in a text box or something on the right.
So currently, the treeview is bound to the xmldatasource, so when the user
clicks on of the dates (treenodes), it should display the diary info. How do I
get the diary info from the datasource, I don't see any method or property that
will give me that info.
<miniblog xmlns:s="miniblog.xsd">
<Blog>
<Date>2007-10-10T12:00:00</Date>
<Diary>This is a journey into sound 10/10</Diary>
</Blog>
<Blog>
<Date>2007-10-03T12:00:00</Date>
<Diary>This is a journey into sound 10/9</Diary>
</Blog>
</miniblog>
in asp the datasource looks like this
<asp:XmlDataSource runat="server" ID="XMLBlogDS" DataFile="~/App_Data/miniblog.xml">
</asp:XmlDataSource>
I want the date info to show up in a TreeView on the left and I want the diary
info to show up in a text box or something on the right.
So currently, the treeview is bound to the xmldatasource, so when the user
clicks on of the dates (treenodes), it should display the diary info. How do I
get the diary info from the datasource, I don't see any method or property that
will give me that info.