Load it into two datasets using the readXML method, and then call a merge on
them to get your final dataset.
- Sahil Malik
http://dotnetjunkies.com/weblog/sahilmalik
"RC" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi,
>
> I now have 2 xml files with same structure
>
> first.xml
> <dataset1>
> <table1>
> <col1>aaa</col1>
> <col2>bbb</col2>
> </table>
> .....
> </dataset1>
>
> 2nd.xml
> <dataset1>
> <table1>
> <col1>ccc</col1>
> <col2>ddd</col2>
> </table>
> .....
> </dataset1>
>
> how can I merge these 2 set of data into a single dataset?
>
> thanks
>
>