Hello guys,
I wanted to bind data to datasources, for that i wanted to bind RSS feed to text box, how to do this please tell.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Javeed M ShaikhPosted Nov 6, 2011, 11:56 AM
XmlTextReader reader = New XmlTextReader("url to your rss feed");
DataSet ds = New DataSet();
ds.ReadXml(reader);
Now the ds will have multiple tables, just look for your information and bind the appropriate table to your control.