Convert XMLDocument to DataSet ASP.Net 1.1

Sandhurst picture Sandhurst · Mar 26, 2009 · Viewed 7.4k times · Source

I need to convert XMLDocument to DataSet in ASP.Net. I do not want To Save the XMLData to any physical location.

Answer

Shoban picture Shoban · Mar 26, 2009

You can use xmlDocument class to read the xml file and save the data to dataset. Here is an example about how you can use xmlDocument to read XML files.

This code is pretty old. Havent tried it

XmlDocument xdoc = MethodReturnsXmlDocument();

// convert to DataSet

DataSet ds = new DataSet();

ds.ReadXml(new XmlNodeReader(xdoc));

Here is another example for you.