Subject: Re: Antwort: xsl:for-each
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 5 Jul 2001 14:04:13 +0100
|
> I Think you want the following:
<xsl:template match="PDetail">
<xsl:for-each select="CDetail">
<xsl:apply-templates select="."/>
</xsl:for-each>
</xsl:template>
or the simpler equivalent:
<xsl:template match="PDetail">
<xsl:apply-templates select="CDetail"/>
</xsl:template>
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|