I have an XML structure which is like this:
Code:
<details>
<personal>
<name>name</name>
<phone>1111111111</phone>
</personal>
<tag1>
<tag2>eee</tag2>
<tag3>ffff</tag3>
<rtag1>
<rtag2>aa</rtag2>
<rtag3>bb</rtag3>
</rtag1>
<rtag1>
<rtag2>cc</rtag2>
<rtag3>dd</rtag3>
</rtag1>
</tag1>
</details>
Now I want to be able to display the following in a datagrid,
name, phone, tag2, tag3 and multiple rtag2 and rtag3's
How do I do it?
Is there a solution, an alternate solution?
TIA!