Reputation: 6918
I have to create an RSS feed for the ASP.NET website I am developing.
How can I create an RSS feed in ASP.NET?
Upvotes: 2
Views: 492
Reputation: 7605
Use the SyndicationFeed
class and friends in System.ServiceModel.Syndication
. It also allows outputting a number of formats, like Atom, and lets you attach or parse extended information.
Upvotes: 0
Reputation: 13743
You can use RssToolkit , its very easy to use. click here for publishing RSS feed
Upvotes: 2