ASP.Net RSS feed - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T05:45:24Zhttp://stackoverflow.com/feeds/question/57287http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/57287/asp-net-rss-feed8ASP.Net RSS feedJoel Coehoorn2008-09-11T18:30:47Z2009-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#572924Answer by John Calsbeek for ASP.Net RSS feedJohn Calsbeek2008-09-11T18:32:51Z2008-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#572986Answer by John Sheehan for ASP.Net RSS feedJohn Sheehan2008-09-11T18:35:19Z2008-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#573092Answer by AlexDuggleby for ASP.Net RSS feedAlexDuggleby2008-09-11T18:41:36Z2008-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#573190Answer by Joel Coehoorn for ASP.Net RSS feedJoel Coehoorn2008-09-11T18:44:24Z2008-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#573732Answer by Tom Alderman for ASP.Net RSS feedTom Alderman2008-09-11T19:12:08Z2008-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#617066Answer by Brian Webster for ASP.Net RSS feedBrian Webster2008-09-14T22:50:38Z2008-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#7995620Answer by Ryan for ASP.Net RSS feedRyan2009-04-28T19:51:36Z2009-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-1Answer by Bhaskar for ASP.Net RSS feedBhaskar2009-06-11T21:02:29Z2009-06-11T21:02:29Z<p>Create an HTTP Handler to create a RSS feed</p>