Parsing XML

  • Thread starter Thread starter Kent Ogletree
  • Start date Start date
K

Kent Ogletree

I seem to be having a problem parsing an XML string and have not found a
good reference to assist me. I have XML strings stored in a database such
as:

<qMultipleChoice>
<qText>My distance learning experience was positive.</qText>
<qChoice>StronglyDisagree</qChoice>
<qChoice>SomewhatDisagree</qChoice>
<qChoice>Neutral<qChoice>
<qChoice>SomewhatAgree</qChoice>
<qChoice>StronglyAgree</qChoice>
</qMultipleChoice>

I need to get the base name of the base node and children and the text
string of each child. Then select a control and populate it based on the
node basenames and values.

Has anyone done anything close to this or have a reference to it?

Thanks,
Kent
 
Back
Top