Topic: [XSL] Including an external file |
|
---|---|
Author | Thread |
Bipolar (III) Inmate From: Berlin, Germany |
posted 11-19-2005 13:52
Hi! code: <xsl:include> <xsl:attribute name="href"><xsl:value-of select="root/page/layout"/></xsl:attribute> </xsl:include>
|
Bipolar (III) Inmate From: Berlin, Germany |
posted 11-19-2005 14:00
Or call a template based on the value of a XML-Document? code: <xsl:call-template> <xsl:attribute name="name"><xsl:value-of select="root/page/layout"/></xsl:attribute> </xsl:call-template> or <xsl:call-template name="{root/page/layout}"/> |