私はフォーマットのRSSフィードを持っています
<item>
<title>11/09/2012 - Coffee Roasting 101</title>
<link><![CDATA[http://test.com/helios/index.php?com=detail&eID=277478]]></link>
<description><p><img style="float: right; margin: 5px;" src="http://test.com/helios/img/hand.jpg" alt="five finger of coffee please" width="127" height="132" />Learn the basics of roasting coffee. What...</description>
<guid>http://test.com/helios/index.php?com=detail&eID=277478</guid>
<pubDate>Fri, 09 Nov 2012 08:00:00 -0800</pubDate>
</item>
説明ノードには、いくつかのテキストとimgタグが含まれています。今、私の関数では、次のようなことをしています。
foreach (ArrayList item in rssItems)
{
string desc = (string)item[1];
-------------------
Response.Write("<li><a href=\"" + link + "\">" + title + "</a>");
Response.Write("<p>" + desc+ "</p></li>");
-------------------
-------------------
}
テキストと画像の高さと幅のapタグを取得します。タグに属性と説明がない別のimgタグとして画像を取得しようとしています<p>
。この問題に取り組むための助けをいただければ幸いです。