G
Germic
</list>
<array>
<Name>
<first> John </first>
<second> Joseph </second>
</Name>
</Course>
<major> Computers </major>
<minor> Biology </minor>
</Course>
</array>
.....<array>....</array>.....
</list>
After presisting this xml to a dataset, how is it possible to access the
node first, second and major,minor?
(
foreach (DataRow dr in ds.Tables[0].Rows){
Console.WriteLine(Convert.ToString(dr["first"]); .....?
Also, Is it better/efficient to persist the XML data to a dataset and then
parse it or to a XMLDocument?
Thanks
<array>
<Name>
<first> John </first>
<second> Joseph </second>
</Name>
</Course>
<major> Computers </major>
<minor> Biology </minor>
</Course>
</array>
.....<array>....</array>.....
</list>
After presisting this xml to a dataset, how is it possible to access the
node first, second and major,minor?
(
foreach (DataRow dr in ds.Tables[0].Rows){
Console.WriteLine(Convert.ToString(dr["first"]); .....?
Also, Is it better/efficient to persist the XML data to a dataset and then
parse it or to a XMLDocument?
Thanks