Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 691033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T02:29:52+00:00 2026-05-14T02:29:52+00:00

Under a timeline, therefore the salient point is quickly and willing to throw some

  • 0

Under a timeline, therefore the salient point is “quickly” and willing to throw some $ at it too (not meaning I’ll pay the correct answer, but rather for a commercial product 🙂 ).

Looking for an RSS feed generator usuable in .NET framework 2.0. Ideally it would be easy to use (inferred quick) but flexible enough to support the multiple standards (shown part way down this page).

We have the business classes in .NET and want to publish RSS feeds on the ASP.NET website.

Any software that’s good?
Doesn’t have to be free.
Must support .NET framework 2.0

Thanks.

Candidates and Reasoning

  • Semweb – appears to be on indefinite hiatus – likely not a good idea to pick up
  • ROWLEX – based on Semweb, not fond of using something whose core engine is not being updated
  • Linq2Rdf – appears overly complicated for a quick solution
  • ASP.NET RSS Toolkit – tried it and appears to generate an old/simplified format – hasn’t been touched in a while
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T02:29:52+00:00Added an answer on May 14, 2026 at 2:29 am

    here’s some vb.net code that I’ve used to generate a rss feed from a collection in our BLL:

    Dim xws As New XmlWriterSettings()
    xws.Encoding = Encoding.UTF8
    Using xw As XmlWriter = XmlTextWriter.Create(XmlFileName, xws)
    
        xw.WriteStartDocument()
        xw.WriteStartElement("rss")
        xw.WriteAttributeString("version", "2.0")
        xw.WriteStartElement("channel")
        xw.WriteElementString("title", Title)
        xw.WriteElementString("link", Link)
        xw.WriteElementString("description", Description)
        xw.WriteElementString("managingEditor", Editor)
    
        Dim items As System.Collections.Generic.List(Of FolderDocuments) = FolderDocuments.GetFolderDocuments()
        If items IsNot Nothing Then
            For Each fd As FolderDocuments In items
                xw.WriteStartElement("item")
                xw.WriteElementString("title", fd.Title)
                xw.WriteElementString("description", fd.Intro)
                xw.WriteElementString("link", fd.Url)
                xw.WriteElementString("pubDate", fd.DateStart.ToString("R"))
                xw.WriteEndElement()
            Next
        Else
            xw.WriteStartElement("item")
            xw.WriteEndElement()
        End If
    
        xw.WriteEndElement()
        xw.WriteEndElement()
        xw.WriteEndDocument()
    End Using
    

    This writes to a file, but you could easily use a generic handler (.ashx) to pass parameters to that would generate the required rss feed on the fly – use Response.Output for the xml writer.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Under Windows 7 I have a batch file for checking the status of some
Under what exact circumstances do @SessionAttributes get cleared? I've discovered some confusing behaviour when
Under plain PHP 5.3, I have some code which uses MySQL to first deletes
Under what scenarios we use SERIALIZABLE Isolation level? I have seen some answers on
Under what conditions does Huffman encoding make a string not compressible? Is it when
Under Ubuntu 10, I installed using: npm install js2coffee Seems to install smoothly I
Under what specific situation is it ok (or even recommended) to present end-users with
Under the .NET Compact Framework, there is no FormWindowState.Minimize value. How can I minimize
Under MacOSX, I can create a file under root (/) without having admin rights.
Under Windows, I have used a program called Dependency Walker to examine the libraries

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.