Ok I got xmldata from a URL how do read it?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Ok I got xmldata from a URL. I have tried to read Microsoft quickstarts, but
still don’t know where to start. What I want is to create a dataset and read
the data from the URL.
What do I do first? Create DataSet mappings or XML Schema Definition
language (XSD) schema? Please tell me what to do first? What do you create
XSD schema from the URL?
 
You need to read the XML document using DataSet.ReadXml. If an XML schema
is available you can use DataSet.ReadXmlSchema first.
 
Back
Top