Skip to content

Instantly share code, notes, and snippets.

@sphingu
Created June 15, 2013 07:53
Show Gist options
  • Save sphingu/5787323 to your computer and use it in GitHub Desktop.
Save sphingu/5787323 to your computer and use it in GitHub Desktop.
Read Xml and bind to GridView
DataSet ds = new DataSet();
ds.ReadXml(MapPath("MyXML.xml"));
GridView1.DataSource = ds;
GridView1.DataBind();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment