guest2013-1
guest
- Joined
- Aug 22, 2003
- Messages
- 19,800
- Reaction score
- 13
I have an XML document that looks like:
When loading it into the dataset it seems to throw away the <Description> part. Any ideas why? I need to display/save this and I can't figure out why I can't load them in the dataset
Code:
<Record>
<RedordID>1</RecordID>
<RecordName>test</RecordName>
<Descriptions>
<Description><Name>This is a description1</Name><Value>This is its value</Value></Description>
<Description><Name>This is a description2</Name><Value>This is its value3</Value></Description>
<Description><Name>This is a description3</Name><Value>This is its value2</Value></Description>
</Descriptions>
</Record>
When loading it into the dataset it seems to throw away the <Description> part. Any ideas why? I need to display/save this and I can't figure out why I can't load them in the dataset
Last edited: