How to Read XML File

  • Thread starter Thread starter abhishek007p
  • Start date Start date
A

abhishek007p

hi,

i am new to xml via vb.net, can someone tell how to get the required
data from a xml file & show it in textboxs.


thanks,
AB
 
Dim _xmlDocument As Xml.XmlDocument
_xmlDocument = New Xml.XmlDocument
_xmlDocument.Load("c:\test.xml")
TextBox1.Text = _xmlDocument.InnerXm

- P
 

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

Back
Top