Subject: Re: defining sections
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 25 Nov 2005 13:19:39 GMT
|
<xsl:template match="data">
so here the current node is a data element
<after>
<xsl:value-of select="."/>
</after>
<xsl:apply-templates select="data
and here you are selecting data children of the current node, but your
data elements are not nested, so it selects nothing.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|