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 what circumstances would this or would this not be safe? I have a
Under Windows Server 2003, Enterprise Edition, SP2 (/3GB switch not enabled) As I understand
Under what conditions do some PowerShell modules become unavailable? When I create a process
Under the path \sites\all\themes\fusion\mytheme\, I found that some php file called taxonomy_term_page.tpl.php, views-view-fields--product-brand-category--block-2.tpl.php... will
Under Windows XP WPF true 3D content (which is usually displayed using the Viewport3D
Under VS's external tools settings there is a Use Output Window check box that
Under what circumstances - if any - does adding programmers to a team actually
Under the View-Model-ViewModel pattern for WPF, I am trying to databind the Heights and
Under what circumstances might you want to use multiple indirection (that is, a chain
Under Linux, my C++ application is using fork() and execv() to launch multiple instances

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.