[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
[xsl] selecting all but first node
Subject: [xsl] selecting all but first node
From: Gerritjan Koekkoek <gerritjankoekkoek@xxxxxxx>
Date: Fri, 26 May 2006 22:22:29 +0200
|
<xsl:template match="persoonsgegevens[1]">
...
</xsl:template>
I would like to treat all other nodes differently...
<xsl:template match="persoonsgegevens[?]">
...
</xsl:template>
What should i use instead of ?
|