Many thanks for the help.
it works now.
how to get rid of the <a href=...></a> from the description node, for examle, get rid of chars before "Groups of parents throughout China have formed a last-ditch..."?
http://www.rfa.org/english/china/rss.xml
here is the item struture:
<item rdf:about="http://www.rfa.org/english/news/2006/05/03/china_children">
<title>Missing, Presumed Sold: Chinese Parents' Desperate Hunt For Their Kids</title>
<link>http://www.rfa.org/english/news/2006/05/03/china_children</link>
<description><a href="http://www.rfa.org/english/news/2006/05/03/china_children"/><img src="http://www.rfa.org/english/images/2006/05/03/ChinaChildren75.jpg" height="75" width="75" alt="Chinese Children"/></a>Groups of parents throughout China have formed a last-ditch alliance in the hope of recovering their missing children, who are believed to have been kidnapped and sold in a booming adoption, bridal, and ************ trade in human beings.</description>
<dc:date>2006-05-03T10:33:00-0400</dc:date>
</item>
xslt:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rss="http://purl.org/rss/1.0/"
>
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/rdf:RDF">
<xsl:for-each select="*[name() = 'item']">
<a href="{rss:link}" target="_main">
<xsl:value-of select="rss:title"/>
</a>
<br></br>
<xsl:value-of select="rss:description"/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>