ASP.Net RSS feed - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:45:24Z http://stackoverflow.com/feeds/question/57287 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57287/asp-net-rss-feed 8 ASP.Net RSS feed Joel Coehoorn 2008-09-11T18:30:47Z 2009-06-11T21:02:29Z <p>How do I create an rss feed in ASP.Net? Is there anything built in to support it? If not, what third-party tools are available?</p> <p>I'm thinking webforms, not MVC, though I suppose since this isn't a traditional page the difference may be minimal.</p> http://stackoverflow.com/questions/57287/asp-net-rss-feed/57292#57292 4 Answer by John Calsbeek for ASP.Net RSS feed John Calsbeek 2008-09-11T18:32:51Z 2008-09-11T18:32:51Z <p>Here's an RSS framework created by a Microsoft developer: <a href="http://www.codeplex.com/ASPNETRSSToolkit" rel="nofollow">ASP.NET RSS Toolkit</a></p> http://stackoverflow.com/questions/57287/asp-net-rss-feed/57298#57298 6 Answer by John Sheehan for ASP.Net RSS feed John Sheehan 2008-09-11T18:35:19Z 2008-09-11T18:35:19Z <p>For built-in, there's nothing stopping you from using XmlDocument or XDocument (3.5) to build up the required XML for RSS. It's more work than it's worth though.</p> <p>I use the <a href="http://www.codeplex.com/Argotic" rel="nofollow">Argotic Syndication Framework</a> and serve the feeds through Generic Handlers (.ashx) with the content type set to text/xml.</p> <p>The <a href="http://www.codeplex.com/ASPNETRSSToolkit" rel="nofollow">RSSToolkit</a> is also nice. It comes with an RSSDataSource control if you're into that sort of thing. It also includes a control that will automatically insert the meta tag required for feed autodiscovery in browsers. I found the build provider for creating feeds to be a little kludgey however.</p> http://stackoverflow.com/questions/57287/asp-net-rss-feed/57309#57309 2 Answer by AlexDuggleby for ASP.Net RSS feed AlexDuggleby 2008-09-11T18:41:36Z 2008-09-11T18:41:36Z <p>Use one of the libraries available for generating the actual RSS. For example: <a href="http://www.rssdotnet.com/" rel="nofollow">http://www.rssdotnet.com/</a></p> <p>If you check the code examples page at the bottom: <a href="http://www.rssdotnet.com/documents/code_examples.html" rel="nofollow">http://www.rssdotnet.com/documents/code_examples.html</a> you will find the code for clearing the content type in an ASP.net Page and outputting the RSS.</p> <p>Something along the lines of (not tested, not compiled, just typed):</p> <pre><code>public void PageLoad() { // create channel RssChannel _soChannel = new RssChannel(); // create item RssItem _soItem = new RssItem(); _soItem.Title = "Answer"; _soItem.Description = "Example"; _soItem.PubDate = DateTime.Now.ToUniversalTime(); // add to channel _soChannel.Items.Add(_soItem.); // set channel props _soChannel.Title = "Stack Overflow"; _soChannel.Description = "Great site.. jada jada jada"; _soChannel.LastBuildDate = DateTime.Now.ToUniversalTime(); // change type and send to output RssFeed _f = new RssFeed(); _f.Channels.Add(channel); Response.ContentType = "text/xml"; _f.Write(Response.OutputStream); Response.End(); } </code></pre> <p>Hope that helps.</p> http://stackoverflow.com/questions/57287/asp-net-rss-feed/57319#57319 0 Answer by Joel Coehoorn for ASP.Net RSS feed Joel Coehoorn 2008-09-11T18:44:24Z 2008-09-11T18:44:24Z <p>While investigating my own question, I found <a href="http://www.4guysfromrolla.com/webtech/031303-1.shtml" rel="nofollow">this article</a> very helpful.</p> http://stackoverflow.com/questions/57287/asp-net-rss-feed/57373#57373 2 Answer by Tom Alderman for ASP.Net RSS feed Tom Alderman 2008-09-11T19:12:08Z 2008-09-11T19:12:08Z <p>You could take a look at Argotic. It is a really cool framework.</p> <p><a href="http://www.codeplex.com/Argotic" rel="nofollow">http://www.codeplex.com/Argotic</a></p> http://stackoverflow.com/questions/57287/asp-net-rss-feed/61706#61706 6 Answer by Brian Webster for ASP.Net RSS feed Brian Webster 2008-09-14T22:50:38Z 2008-09-14T22:50:38Z <p>The .NET Framework 3.5 has added a SyndicationFeed Class which allows you to create and/or consume feeds in Atom 1.0 and RSS 2.0 formats.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.syndicationfeed.aspx" rel="nofollow">SyndicationFeeds Class on MSDN</a></p> http://stackoverflow.com/questions/57287/asp-net-rss-feed/799562#799562 0 Answer by Ryan for ASP.Net RSS feed Ryan 2009-04-28T19:51:36Z 2009-04-28T19:51:36Z <p>Here's a great tutorial, aptly titled "How to create a syndication feed for your website" <a href="http://dotnetslackers.com/articles/aspnet/How-to-create-a-syndication-feed-for-your-website.aspx" rel="nofollow">http://dotnetslackers.com/articles/aspnet/How-to-create-a-syndication-feed-for-your-website.aspx</a></p> http://stackoverflow.com/questions/57287/asp-net-rss-feed/983655#983655 -1 Answer by Bhaskar for ASP.Net RSS feed Bhaskar 2009-06-11T21:02:29Z 2009-06-11T21:02:29Z <p>Create an HTTP Handler to create a RSS feed</p>