I need to convert XMLDocument to DataSet in ASP.Net. I do not want To Save the XMLData to any physical location.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.