Sunday 26 June 2016

Get DataSet from XML File in ASP.Net C#.

DataSet ds = new DataSet();
ds.ReadXml(Server.MapPath("~/Customers.xml"));
// You  can  use this  data Set as DataSouse  to bind Grid etc..

No comments:

Post a Comment