I have a document from Amazon wich is massive and has the same names for elements under different branches of the tree.
ie
<item>
<smallimage>
<height units=""></height>
</smallimage>
<largeimage>
<height units=""></height>
</largeImage>
.net cannot deal with this in a dataset as it needs unique names. so i need to rename the height elements to something like smallheight and largeheight.
as this is only a snippet of the document, i need to copy all of the docuemnt and just rename these specific nodes.
is there any way to say copy everything, but whith these, do this.
??
Please help i have been searching and searchng
ie
<item>
<smallimage>
<height units=""></height>
</smallimage>
<largeimage>
<height units=""></height>
</largeImage>
.net cannot deal with this in a dataset as it needs unique names. so i need to rename the height elements to something like smallheight and largeheight.
as this is only a snippet of the document, i need to copy all of the docuemnt and just rename these specific nodes.
is there any way to say copy everything, but whith these, do this.
??
Please help i have been searching and searchng