C#net4阅读并导入RSS

时间:2014-03-13 11:27:30

标签: c# rss

[C#net4]导入RSS

大家好,希望得到你的帮助。

我需要在我的数据库MySQL中使用C#net4导入此类型的所有新闻rss链接:http://www.remotehost.com/news/news.rss

这是我的C#代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ServiceModel.Syndication;
using System.Xml;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        XmlReader reader = XmlReader.Create("http://www.remotehost.com/news/news.rss");
        SyndicationFeed feed = SyndicationFeed.Load(reader);

        foreach (var item in feed.Items)
        {
            Console.WriteLine(item.Title.Text);
            Console.WriteLine(item.PublishDate.ToString("dd/MM/yyyy"));
            Console.WriteLine();
        }

        reader.Close();
    }
}

但是在调试中我发现了这个错误:

Error HTTP 401 Unauthorized
你能帮帮我吗?有什么建议吗? 先感谢您。 干杯

0 个答案:

没有答案