| Author: Cema Indumathy V 27 Aug 2007 | Member Level: Diamond | Rating:  Points: 2 |
DataSet ds = new DataSet(); ds.RedaXML(strpath);
|
| Author: vadivukarasi 27 Aug 2007 | Member Level: Gold | Rating:  Points: 2 |
u can work with xml using datasets
ds.ReadXml(xmlfilepath) ds.Tables[0] will refer to ur Student table ds.Tables[0].Rows.Count is 2 ds.Tables[0].Rows[0].ItemArray[0].ToString() will refer to the SNO 1
|