InnerXml "<Table><AREA_CODE>707</AREA_CODE><TIME_ZONE>P</TIME_ZONE></Table>"

H

hazz

how do I parse this System.Xml.Xmlnode to get the value 'P' within the
element <TIME_ZONE> ?

Thank you, -hazz
 
H

hazz

Dim xmlNode As XmlNode = webservicexxx(argument to pass in)

Dim doc As XmlDocument = New XmlDocument

doc.LoadXml(xmlNode.InnerXml)

Dim root As XmlNode = doc.FirstChild

array(iCounter).property = (root("TIME_ZONE").InnerXml)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top