[Home] [By Thread] [By Date] [Recent Entries]
Or you could try this approach:
<xsl:template match="node">
<xsl:apply-templates select="descendant-or-self::result"/>
</xsl:template>If you want to add space or a return between each result, you might try something like this: <xsl:template match="node">
<xsl:for-each select="descendant-or-self::result">
<xsl:text> </xsl:text>
<xsl:apply-templates select="."/>
</xsl:for-each>
</xsl:template>t.o. -- Terry Ofner 1541 Northbrook Drive Indianapolis, IN 46260 317-870-1992 tofner@xxxxxxxxxxx
|

Cart



