xsl-list
[Top] [All Lists]

Re: Re: Calling a different stylesheet based upon XML tag?

2004-10-26 07:18:01
Hi,

why don't you try to use the mode-attribute, like that


<xsl:template match="order" mode="input">
... instructions
</xsl:template>

and in the other stylsheet :

<xsl:template match="order" mode="output">
... instructions
</xsl:template>

so you can control, which template to apply.

Greeetings


<Prev in Thread] Current Thread [Next in Thread>