views:

16

answers:

0

For the below xml, Is there some way that I can read the nodelist Products, which comes in dynamically with many number of Childnodes, with its child nodes and having multiple number of Attributes in it? The motive being: Binding the xml to Radgrid with a hierarchial representation just like this

<Results>
<Products ID="1" B_Id="12" ....>
  <Product RelationID="12" ProductNo="3454" ...>
    <Product RelationID="44" Desc="hello" .....>
       <Product RelationID="54" ...... />
       <Product RelationID="54" ...... />
    </Product>
    <Product RelationID="74" Desc="hello" .....>
       <Product RelationID="84" ...... />
       <Product RelationID="84" ...... />
    </Product>
    ......
  </Product>
   ...
</Products>
</Results>