Sunday, April 26, 2015

XML to DataGridView

Here I write the samle code to Read XML file and bind with GridView. see below code can be you in ASP.NET C#.

    private void MyXmlFile()
         try
            {
                XmlReader xmlFile ;
                xmlFile = XmlReader.Create("Product.xml", new XmlReaderSettings());
                DataSet ds = new DataSet();
                ds.ReadXml(xmlFile);
                dataGridView1.DataSource = ds.Tables[0];
            }
            catch (Exception ex)
            {
                MessageBox.Show (ex.ToString());
            }
        }

No comments:

Post a Comment