我有一个格式为 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>
。解决此问题的任何帮助将不胜感激。