Hi
I have xml doc produced using dataset.In my xml doc I am getting the data as repeated format.I want to remove set of nodes from xml doc Can anyone help me on this
my xml doc is
<a/>
<b/>
<c/>
<m>
<m1/>
<m2/>
</m>
<a/>
<b/>
<c/>
<m>
<m4/>
<m5/>
</m>
Result should be
<a/>
<b/>
<c/>
<m>
<m1/>
<m2/>
</m>
<m>
<m4/>
<m5/>
</m>
How can I accomplish this
Go to the complete details ...