Tuesday, October 26, 2010

Load the xml data into the DataSet using c#

function Loadxml()
{
XmlReader Xmlfile;
Xmlfile= XmlReader.Create(",new XmlReaderSettings());
Dataset oDs=new Dataset();
oDS.ReadXml();
}


replace "xmlfilepath" WITH YOUR FILE PATH

replace "xmlfile" WITH YOUR FILE NAME

No comments:

Post a Comment