| Author: Mohd. Azharuddin Ansari 02 Sep 2008 | Member Level: Gold | Rating: Points: 3 |
There are two ways to get the data from the xml using .net 1. directly load xml to dataset 2. Use xmldocument and xpath queries
|
| Author: ashok 02 Sep 2008 | Member Level: Bronze | Rating: Points: 1 |
thanQ,
Can u give me any refernces or code please.
Ashok
|
| Author: Divakar S 02 Sep 2008 | Member Level: Gold | Rating: Points: 3 |
Try this
private string xmlname = AppDomain.CurrentDomain.BaseDirectory + @"XmlValues.xml"; Dataset ds= new DataSet(); ds.ReadXml(xmlname);
|