This page is full-fledged news channel, which can be used to process publications aggregators. So, to create RSS-feed for ASP.NET, we need: a database that will contain news, a page template to ASP.NET; code generating the content of the page ASP.NET; Database News In order to keep the news we need to create the database. Create a database can be on any platform, I'll use the easiest option - file mdb. Base data to better mark the news in a separate file, so when you update the contents of the tables does not erase the other tables, although my site has only a single database with multiple tables, and it creates some inconvenience - you first need to unload the database from the server, edit the table you want, and then return the database back to the server. Thus, the table must contain the following news of the field: news_id - id publish (number); news_date - publication date (Date and time); news_title - headline news (string); news_description - The contents (text); news_link - a reference to the main article (the string). If necessary, a table can be extended to other fields. Page Template File news feed news channel will have a name rss.aspx and consist of only one line: Code that generates the content of a news channel code that generates that will contain news, is located in the file.
