如何使用 Asp.Net 生成 RSS
我使用 Asp.net Web 表单和 C# 4。
我的数据库表中有内容,我想将其作为 RSS 发布到我的网站。
我的问题:
- Asp.Net框架是否提供了一个命名空间或工具来自动 做吗?
- 如果没有,您能给我指出一个好的教程或工具吗?
- 我读了这篇文章: http://weblogs.asp.net/scottgu/archive/2006/02/22/Awesome-ASP.NET-2.0-RSS-Tool_2D00_Kit-Released.aspx 这个工具适用于 Asp.Net 2.0 现在可以使用还是已经过时了?
谢谢
I use Asp.net Web Forms and C# 4.
I have content in DataBase table and I would like publish it as RSS for my website.
My questions:
- Does Asp.Net framework provide a namespace or tool to automatically
doing it? - In case no, could you point me out a good tutorial or tool?
- I read the article: http://weblogs.asp.net/scottgu/archive/2006/02/22/Awesome-ASP.NET-2.0-RSS-Tool_2D00_Kit-Released.aspx
this tool is for Asp.Net 2.0 could be used nowadays or is out of date?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不要手动执行此操作 - 使用内置的 System.ServiceModel.Syndicate 类为您生成提要。然后您就知道它符合您生成的任何格式(RSS 或 ATOM)。
这里有一篇文章将引导您完成此过程:
[如何为您的网站创建聚合提要][1]
[1]:http://dotnetslackers.com/articles/aspnet/How-to-create-a-synmination-feed-for-your-website.aspx [不工作]
Don't do it by hand - use the built-in System.ServiceModel.Syndication classes to generate the feed for you. Then you know it's compliant with whichever format (RSS or ATOM) you generate.
Here's an article that walks you through it:
[How to create a syndication feed for your website][1]
[1]: http://dotnetslackers.com/articles/aspnet/How-to-create-a-syndication-feed-for-your-website.aspx [NOT WORKING]
嗯,MSDN 有一个关于如何从 ASP.NET 生成 RSS 2.0 的相对简单的教程,可以在 http://msdn.microsoft.com/en-us/library/aa478968.aspx。这真的不是很难,所以如果你想学习一些东西,我建议你这样做。
Well, MSDN has a relatively-straightforward tutorial on how to generate RSS 2.0 from ASP.NET, found at http://msdn.microsoft.com/en-us/library/aa478968.aspx. It's really not terribly hard, so I would recommend doing it if you're wanting to learn something.
您会发现此工具非常有用
创建基于 SQL 的 RSS 源 [死链接]
You can found this tool very useful
Creating SQL Based RSS Feed [DEAD LINK]