views:

7

answers:

0

If I have a multi layered XML Data file of the following type

<versions>
 <version id="1">
   <features>
    <feature id="1">
     <deatil>aaaaa</detail>
    </feature>
    <feature id="2">
     <deatil>bbbb</detail>
    </feature>
  </features>
 </version>
</versions>

I want to build an interface in visual studio using ajax or asp.net or silverlight whatever is better for this purpose, such that when the user chooses a particular version he is shown a list of features, when he chooses one of the features he is shown the detail

what would be the best way to implement this? any links to tutorials would be great