↧
Answer by CoderDennis for Generating RSS with ASP.Net MVC?
Here are a couple links:RSS Feeds in ASP.NET MVChttp://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/
View ArticleAnswer by David for Generating RSS with ASP.Net MVC?
Here's an interesting article - http://www.developerzen.com/2009/01/11/aspnet-mvc-rss-feed-action-result/It creates an RssActionResult class that sets the content type, and Syndication items to render...
View ArticleAnswer by mmx for Generating RSS with ASP.Net MVC?
Use WCFSystem.ServiceModel.Syndication namespace for which you need to add System.ServiceMode.Web to your references. That handles the whole thing automatically:using System.ServiceModel.Syndication;//...
View ArticleGenerating RSS with ASP.Net MVC?
How would you generate RSS using ASP.Net MVC? I have the data in the database already and I'll transform it as necessary. My first approach is to create an RSS template that I use as a view, but that...
View Article