Reading RSS is quite easy with .net.
You can actually do it with two lines of code, and bind to a datagrid for
example
ds = new DataSet();
ds.ReadXml(URLpath, XmlReadMode.Auto);
If you want to implement a timeout option on the read then this is a good
approach
http://www.johntimney.com/blog/defau...a-31646bac618b
--
--
Regards
John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com http://www.johntimney.com/blog
"Wade" <wade.cormie@thomson.comwrote in message
news:ujTY4djEHHA.3600@TK2MSFTNGP06.phx.gbl...
Quote:
Hi, thanks for the quick reply, however, I think that I failed to give
enough information as to my request. I'm actually looking to read from an
rss feed, and place the read data into a webpage, so I need code to read
from an rss feed, and place it into my aspx webpage.
>
I'm using .net and c#.
>
>
"Jani Järvinen [MVP]" <janij@removethis.dystopia.fiwrote in message
news:egdoQUjEHHA.4120@TK2MSFTNGP02.phx.gbl...
>
>