ASP.net Treeview and XML arrays - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:10:40Z http://stackoverflow.com/feeds/question/281359 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/281359/asp-net-treeview-and-xml-arrays 0 ASP.net Treeview and XML arrays Matt690 2008-11-11T16:20:06Z 2008-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>&lt;Passengers&gt; &lt;Passenger&gt; &lt;PassengerName&gt;Name1&lt;/PassengerName&gt; &lt;/Passenger&gt; &lt;Passenger&gt; &lt;PassengerName&gt;Name2&lt;/PassengerName&gt; &lt;/Passenger&gt; &lt;Passenger&gt; &lt;PassengerName&gt;Name3&lt;/PassengerName&gt; &lt;/Passenger&gt; &lt;/Passengers&gt; </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#284573 0 Answer by Alexander Taran for ASP.net Treeview and XML arrays Alexander Taran 2008-11-12T16:47:52Z 2008-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>