On my Page_Load event
DataSet oDs = new DataSet();
oDs.ReadXml("http://stackoverflow.com/feeds");
gvFeeds.DataSource = oDs.Tables[2];
gvFeeds.DataBind();
This populates the GridView as shown below
The DataSet contains 8 DataTables: Feed, Title, Link, Entry, Rank, Category, Author, Summary
DataTable[2] for example, contains the 30 most recent post's Links, as shown above.
What I want is for the GridView to show each records Feed, Title, Link, Entry, Rank, Category, Author, Summary
But, when I assign the enter DataSet to the DataSource, it just populates the GridView as if I had assigned it the DataTable[0] object... being the parent feed's header information.