Hi,
I have a datagrid in which i want to read an xml file. XML file is like
this
<Histories>
<called>
<number> 323223</number>
<number>2232</number>
</called>
<received>
<number> 323223</number>
<number>2232</number>
<received>
</Histories>
I want to display the entire Histories file in to this datagrid so i am
doing this
DataSet newDataSet = new DataSet();
newDataSet.ReadXml(xmlFile);
dataGrid3.DataSource = newDataSet.Tables["Histories"];
But when it shows a plus sign in it from which u can select called or
received. How can i accomplish this.
thanks
|