13
Answers

Fetch XML document in DataGridview ?

Ask a question
Hi Guys,
Suppose I am having one small XML Document,
and I wanted to show contents of XML Document in Datagridview,
So How can I............?

for example the XML document is :-

<EmployeeDetail>
    <EmployeeID>
         <EmpId>101</EmpId>
          <EmpId>202</EmpId>
    </EmployeeID>
    <EmployeeName>
        <EmpName>Jai</EmpName>
          <EmpName>Anurag</EmpName>
      </EmployeeName>

</EmployeeDetail>


and these EmpId and EmpName is wanted to shown in shown in dataGrid. 
   

Answers (13)