Hi
RSS Feeds are just XMLs – so building a RSS reader is not so difficult, first you know how to do it
Let’s start with looking at C# function that reads the RSS Feeds.
First step is to collect the feeds. This is done by using WebRequest:
Read more »
System.Net.WebRequest myRequest = System.Net.WebRequest.Create(rssURL); System.Net.WebResponse myResponse = myRequest.GetResponse(); System.IO.Stream rssStream = myResponse.GetResponseStream(); System.Xml.XmlDocument rssDoc = new System.Xml.XmlDocument(); rssDoc.Load(rssStream);