[xsl] What is the scope of template variables?

Subject: [xsl] What is the scope of template variables?
From: "Shakeel Mahate" <shakeelmahate@xxxxxxxxxxx>
Date: Wed, 16 May 2001 18:26:49 -0400
<xsl:template match="something">
    <xsl:variable name="a" select="XPathExpr"/>
    ........
    <xsl:call-template name="func1"/>
    <xsl:apply-templates select="junk"/>
    .....
</xsl:template>

<xsl:template name="func1">
    <!-- QUESTION:  Is the variable $a defined in the calling template
visible to this template? -->
</xsl:template>

<xsl:template match="junk">
    <!-- QUESTION:  Is the variable $a defined in the calling template
visible to this template? -->
</xsl:template>

<Thanks author="Shakeel Mahate"/>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread