I need to read from one xml file and paste to another xml file. Here
is my situation.
SourceXML.xml
<DataSheets>
<Sheet SheetID = "">
<Node NodeID = "" />
<Node3 NodeID = "" />
<Node21 NodeID = "" />
</Sheet>
<Sheet SheetID = "prr">
<Node NodeID = "" />
<Node55 NodeID = "" />
</Sheet>
<Sheet SheetID = "other">
<Node0 NodeID = "" />
<Node NodeID = "" />
</Sheet>
</DataSheets>
I have SourceXMLTextReader. I want to read/get the content withing
<Sheet> if SheetID = condition. Now all elements that been collected
within <Sheet>, needs to transferred over to another XML file.
I will highly appreciate your time and help.
Thanks
Musa.Biralo