ASP.net Treeview and XML arrays - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T03:10:40Zhttp://stackoverflow.com/feeds/question/281359http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/281359/asp-net-treeview-and-xml-arrays0ASP.net Treeview and XML arraysMatt6902008-11-11T16:20:06Z2008-11-12T16:47:52Z
<p>I am binding a Treeview to an XMLDataSource, The databindings are being generated automaticaly, The XML looks like this:-</p>
<pre><code><Passengers>
<Passenger>
<PassengerName>Name1</PassengerName>
</Passenger>
<Passenger>
<PassengerName>Name2</PassengerName>
</Passenger>
<Passenger>
<PassengerName>Name3</PassengerName>
</Passenger>
</Passengers>
</code></pre>
<p>The Treeview displays the XML correctly but when i click on a node and the SelectedNodeChanged event fires the SelectedNode.DataPath is always the path to the first passenger in the list no matter which passenger node i click on.</p>
<p>Does anyone know how to get the datapath of the actual node i click on ?</p>
http://stackoverflow.com/questions/281359/asp-net-treeview-and-xml-arrays/284573#2845730Answer by Alexander Taran for ASP.net Treeview and XML arraysAlexander Taran2008-11-12T16:47:52Z2008-11-12T16:47:52Z<p>from here i think it can't distinguish the passenger nodes. they kinda lack some kind of id.
checking out help on treeview databinding at the moment i'll be back.</p>
<p>Well help says you can adjust how and what you bind from your xmldatasource to what node properties. might be that you miss the value and navigateurl properties in your binding.</p>