Create xml document

  • Thread starter Thread starter Mark Goldin
  • Start date Start date
I fyou use a dataset to store you data you can simply use the the writeXML
and readXML. methods.
 
Using the classes in System.Xml namespace, e.g.

System.XML.XmlDocument xl =new System.XML.XmlDocument();

There are different ways of doing so. Your approach will be dictated by what
you are trying to do.
 
Back
Top