There are number of methods to read an xml file-
go through these links-
http://www.vbdotnetheaven.
http://www.vbdotnetheaven.
You can also read xml file using dataset
dim ds as new dataset
ds.readxml("filename.xml")
do what ever you want.
But,if you want to do a specific task using this xml file,give a clear description of ur task.
Main Topics
Browse All Topics





by: naspinskiPosted on 2008-07-24 at 21:52:16ID: 22086062
It really depends on what you want to do with it, 'read it' is very vague.
For example, the following will return a list of all the 'ItemType' elements
Select allOpen in new window