Retrieve RSS Feeds

Provided by Jim Ferguson, Senior Application Architect

RSS (Really Simple Syndication) is a popular protocol that allows sites to publish content in XML form. Since RSS is just XML you can use standard .NET XML routines to read it. The following example shows how to retrieve the RSS content from the Microsoft MSDN site and load it into a grid for display:

Dim reader As XmlTextReader = New XmlTextReader("http://msdn.microsoft.com/rss.xml")
Dim ds As DataSet = New DataSet
ds.ReadXml(reader)
DataGrid1.DataSource = ds.Tables(2)

For more informatoin about RSS, see the following links:


Additional Resources

 

 

Thank you! Thank you! I just finished reading this document, which was part of a link in the recent Buzz newsletter. I have printed it for others to read, especially those skeptical on the powers of Access and its capabilities.

Darren D.


View all FMS products for Microsoft Access All Our Microsoft Access Products

 

 

Free Product Catalog from FMS