I\'m working on the datagridview. In which i have to show the values of the column from the xml to the grid view column.
I have xml like this:-
Also i have a grid view which
C#
DataSet ds = new DataSet();
ds.ReadXml("C:/XMLData/employee.xml");
DataGridView1.DataSource = ds.Tables(0);
VB.NET
Dim ds As New DataSet
ds.ReadXml("C:/XMLData/employee.xml")
DataGridView1.DataSource = ds.Tables(0)