This chapter is all about putting the previous chapters into good use. There will be two smaller applications that will be written. First is going to be an application that will read a RSS feed and then turn that feed into a simple HTML table. The other example is going to build on what we have learned with the library XML examples by creating an XML-based library application.
RSS Feed Application
RSS, or Real Simple Syndication, is an XML-based format that allows people to know when something has been published or changed. This example will demonstrate how to use XmlDocument. The content creators ...