用C#程序编写的RSS Feed不起作用

时间:2012-10-01 08:45:43

标签: c# xml rss items

我正在用C#编写一个XML文件。 它基本上是这样的:

<?xml version="1.0"?>
<rss version="0.92" xml:base="http://www.dividedbyzero.tk">
<channel>
<title>Vertretungsplan Feed</title>
<link>http://www.dividedbyzero.tk</link>
<description>Dieser Feed zeigt euch Updates des Vertretungsplans</description>
<language>de</language>
<image>
<title>Vertretungsplan Feed</title>
<url>http://www.inselschule-fehmarn.de/temp/image/a65a51de1af23b1d28b0aa465ecc8d4f_512_0_c.jpg</url>
<link>http://www.inselschule-fehmarn.de/plaene.php?datei=v_c_041_1.html&amp;typ=vs</link>
<width>50</width>
<height>44</height>
</image>
<item>
<title>Update Vorhanden! Mon, 01 Oct 2012 10:32:00 GMT</title>
<link>http://www.inselschule-fehmarn.de/plaene.php?datei=v_c_041_1.html&amp;typ=vs</link>
<description><![CDATA[Der Vertretungsplan hat sich geändert!]]></description>
<pubDate>Mon, 01 Oct 2012 10:32:00 GMT</pubDate>
</item>
</channel>
</rss>

当我添加一个项目时,它看起来像这样:

<?xml version="1.0"?>
<rss version="0.92" xml:base="http://www.dividedbyzero.tk">
<channel>
<title>Vertretungsplan Feed</title>
<link>http://www.dividedbyzero.tk</link>
<description>Dieser Feed zeigt euch Updates des Vertretungsplans</description>
<language>de</language>
<image>
<title>Vertretungsplan Feed</title>
<url>http://www.inselschule-fehmarn.de/temp/image/a65a51de1af23b1d28b0aa465ecc8d4f_512_0_c.jpg</url>
<link>http://www.inselschule-fehmarn.de/plaene.php?datei=v_c_041_1.html&amp;typ=vs</link>
<width>50</width>
<height>44</height>
</image>
<item>
<title>Update Vorhanden! Mon, 01 Oct 2012 10:32:13 GMT</title>
<link>http://www.inselschule-fehmarn.de/plaene.php?datei=v_c_041_1.html&amp;typ=vs</link>
<description><![CDATA[Der Vertretungsplan hat sich geändert!]]></description>
<pubDate>Mon, 01 Oct 2012 10:32:13 GMT</pubDate>
</item>
<item>
<title>Update Vorhanden! Mon, 01 Oct 2012 10:32:00 GMT</title>
<link>http://www.inselschule-fehmarn.de/plaene.php?datei=v_c_041_1.html&amp;typ=vs</link>
<description><![CDATA[Der Vertretungsplan hat sich geändert!]]></description>
<pubDate>Mon, 01 Oct 2012 10:32:00 GMT</pubDate>
</item>
</channel>
</rss>

等等。

当我订阅报纸时,一切正常,它显示所有项目。 但是当我在Google阅读器中添加项目并点击刷新时,它不会显示新项目。 我做错了什么?

提前谢谢!

0 个答案:

没有答案