We have created an RSS feed (.xml file) for our website called rssfeed.xml. This looks as follows: <?xml version='1.0' encoding='utf-8'?> <rss version='2.0'> <channel> <title>Our Website</title> <description>Recent 10 News Items</description> <link>http://www.ourwebsite.com/news.asp?category=CategoryTitle</link> <item> <title>Title of 1st News Item</title> <description>Updated on: Date of Entry</description> <link>http://www.ourwebsite.com/news_item.asp?aid=1234</link> </item> </channel> </rss> Code (markup): How do we create a database connection, recordest and looping repeat region for the item section so that our .xml site feed displays the latest, let's say, 20 entries in our database table? We're used to creating database connections, recordsets and repeat regions in Classic ASP, using Dreamweaver, but we are completely new to .xml and RSS feeds and we just can't find any help online about it. Appreciate any help offered. Thank you. NJ