V
VMI
If I have an XML document, how can I find out what the contents of a certain
tag is?
For example, if I have this:
<?xml version="1.0" standalone="yes"?>
<NewDataSet>
<Table1>
<zip_code>00902</zip_code>
<addon_low>3121</addon_low>
<addon_high>3205</addon_high>
<rec_type>P</rec_type>
<prim_low>9023121</prim_low>
</Table1>
</NewDataSet>
How can I know what the contents of the addon_low node is? Is there any way
that I can check if XmlTextReader.Name equals "addon_low", then display
3205?
Thanks.
tag is?
For example, if I have this:
<?xml version="1.0" standalone="yes"?>
<NewDataSet>
<Table1>
<zip_code>00902</zip_code>
<addon_low>3121</addon_low>
<addon_high>3205</addon_high>
<rec_type>P</rec_type>
<prim_low>9023121</prim_low>
</Table1>
</NewDataSet>
How can I know what the contents of the addon_low node is? Is there any way
that I can check if XmlTextReader.Name equals "addon_low", then display
3205?
Thanks.