extract its contents of xml file

bcm

Well-known member
Joined
Aug 13, 2007
Messages
56
Programming Experience
Beginner
I want to read Xmlfile and extract its contents to display on form in textbox using vb.net2003
How to use the XmlTextReader to read the contents of an XML document and extract the contents, if can be done....
:confused:
 
load the xml document then select the root node. Once you got the root node you can use the innertext or innerhtml property to get the content. if you just want the text then you will have to loop through all the child nodes and extract the contents.
 
Back
Top