Re: Match node() with exception2004-08-30 14:17:50Select='local-name != "SchemaVersion"'
or (if you want to process all elements except SchemaVersion),
you can omit them by using an empty template:
...
<xsl:apply-templates select="*"/>
...
<xsl:template match="SchemaVersion"/>
Cheers
Anton Triest
|
|
||||||||||||||||