Help with Nodes

amitguitarplayer

Active member
Joined
Jul 5, 2008
Messages
27
Programming Experience
5-10
below is the code
For Each oNode As XmlNode In nodeList
TextBox1.Text += oNode.InnerXml
Next

there are 200 Nodes and each node has innerXml as

<Name>HL Road Frame - Black, 58</Name>
<StandardCost>1059.3100</StandardCost>

with the oNode object how can extract <Name> and <StandardCost> so i can format them

thank you
 
Use the SelectSingleNode method to get those nodes.
 
can you help me out with the code ? i am totally lost here :(
I GOT IT !!!
thank you for the method name, i did some R & D and figured it out
thank you very much
 
Back
Top