T
Tjerk Wolterink
I've made the following template:
<xsl:template match="form:string or form:e-mail or form:url or formassword">
[cut]
</xsl:template>
But the match attribute has an invalid xpath pattern, so i tried this:
<xsl:template match=".[node()=form:string or node()=form:e-mail or node()=form:url or node()=formassword]">
[cut]
</xsl:template>
But that too is not valid!
How should i solve this?
<xsl:template match="form:string or form:e-mail or form:url or formassword">
[cut]
</xsl:template>
But the match attribute has an invalid xpath pattern, so i tried this:
<xsl:template match=".[node()=form:string or node()=form:e-mail or node()=form:url or node()=formassword]">
[cut]
</xsl:template>
But that too is not valid!
How should i solve this?