Hi Chris, You cannot use wildcards for mode. You will need to use <xsl:template match="text()|@*"> </xsl:template> and one <xsl:template match="text()|@*" mode="myMode"> </xsl:template> for each mode you employ in your stylesheet.
Cheers, Gordon On Tue, 27 Jan 2004, Chris Haskins wrote: > I have tried to override this default template with the following; > <xsl:template match="text()|@*" mode="?"> </xsl:template>
