Hello Friends,
I am using .net c# and i want to fill datagrid with rss feed.
Problem is
When i return rss feed in to dataset then i got multiple table wich storing diffrent data.
Means i want to fill grid with "Title" and "Picture" here is my code example
protected void Button1_Click(object sender, System.EventArgs e)
{
XmlTextReader reader = new XmlTextReader(txtUrl.Text);
DataSet ds = new DataSet();
ds.ReadXml(reader);
myDataGrid.DataSource = ds.Tables[2] ;
myDataGrid.DataBind();
}
All the details regarding Title and description and posted date is sitting in tables #2 and related image and size of image related information is stored in table #3 so how can i feel grid with this two column ?
Thanks in advance