Well, we all know the pressure of deadlines. I would appreciate any help regarding this!
Ok here is what i am trying to do.
I have a skeleton XML -
<xmitems>
<address1/>
<address2/>
</xmlitems>
where address1 and address2 are my nodes.
I am reading this xml into a DataSet using C# .NET
Now i need to construct an XML that is based on skeleton xml. This is how i want the new xml to look
<xmldata>
<address1>123 street</address1>
<address2> 345 street</address2>
</xmldata>
How do i construct with nodes address1 and address2?
|