protected void Page_Load(object sender, EventArgs e)
{
XDocument loaded = System.Xml.Linq.XDocument.Load(@"C:\test.xml");
var q = from c in loaded.Descendants("Key").DescendantsAndSelf().Elements()
select new { MainTitle = c.Parent.Attribute("Title").Value, Title = c.Attribute("Title").Value };
GridView1.DataSource = q.ToList();
GridView1.DataBind();
}
|