Subject: RE: Matching a template
From: claudius teo <claud108@xxxxxxxxx>
Date: Wed, 14 Oct 2009 22:36:29 -0700 (PDT)
|
Mike,
It worked, thank you.
Claudius
>>>>>
> Well, your idAplicatie element doesn't have any text nodes, so the
> pattern match="idAplicatie/text()" will never match anything. Change it > to
<xsl:template match="idAplicatie">
<idAplicatie>
<xsl:value-of select="$idAplicatie"/>
</idAplicatie>
</xsl:template>
> Regards,
> Michael Kay
> http://www.saxonica.com/
> http://twitter.com/michaelhkay
|