Main Topics
Browse All TopicsHi Experts,
I loaded an XML file from URL and extract information from it.
1)The code that I currently using works but I'm wondering if there is a better way to do it.
2) How do I get "edition_info" from the "Details" tag?
Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Yes there s definetly a better way. Please use dataset. The code would be something like this:
Dim dsPubs As New DataSet()
' Read in XML from file
dsPubs.ReadXml("Pubs.xml")
Now you can use a for loop and get all the elements by using dsPub.Tables(0).Items or dsPub.Tables(0).Rows
jpaulino,
I'm using VS2008.
ajaysharmaapjs,
Will look over those.
abhigyan,
I used your code and the dataset has 5 tables and all tables have the same name ISBNdb. In order to retrive the AuthorsText, I have to loop through each table to find a column that has that column name and then extract the value. This is not much better than what I already have.
Thanks
Business Accounts
Answer for Membership
by: jpaulinoPosted on 2009-09-04 at 03:02:49ID: 25258018
What versions of Visual Studio do you use ?