V
vbmark
I have the follwing XML string:
<RecordSet>
<Row RowNumber="1">
<UserID>111</UserID>
<Phone>1234567890</Phone>
</Row>
<Row RowNumber="2">
<UserID>747</UserID>
<Phone>9876543210</Phone>
</Row>
</RecordSet>
A <Row> can have a variable number of elements in it.
How do I get a list of the elements? Such as in the
above case would be UserID and Phone?
My goal is to convert the XML into a Dataset.
Thanks!
<RecordSet>
<Row RowNumber="1">
<UserID>111</UserID>
<Phone>1234567890</Phone>
</Row>
<Row RowNumber="2">
<UserID>747</UserID>
<Phone>9876543210</Phone>
</Row>
</RecordSet>
A <Row> can have a variable number of elements in it.
How do I get a list of the elements? Such as in the
above case would be UserID and Phone?
My goal is to convert the XML into a Dataset.
Thanks!