Building a RSS reader in ASP.Net

.NET No Comments

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:

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);
Read the rest of this entry »

Reconfiguring a 64bit IIS to use 32bit ASP

Windows Server 1 Comment

I just installed the ExpandIT Online Connector on a Server which is running the 64bit version of Windows 2003.

The Installation went well – and everything seams to be running – until I noticed, that the ASP pages could not use the ActiveX object for the ExpandIT Online Connector.

Read the rest of this entry »

Icons by N.Design Studio. Designed By Ben Swift and Customized by Ingrid Byllemos. Powered by WordPress
Entries RSS Comments RSS Log in