xsl-list
[Top] [All Lists]

Xsl:variable question

2005-09-26 12:56:28
Hello,

If I declare more than one global variable in a document, can I be
ensured that the global variables will be instantiated in a particular
order?

For instance, if I do this,

<xsl:stylesheet>

        <xsl:variable name="A">
                some processing...
        </xsl:variable>

        <xsl:variable name="B">
                some processing dependent on B
        </xsl:variable>

        <xsl:variable name="C">
                some processing dependent on A,B,etc.
        </xsl:variable>

        <xsl:template match="/">
                transform
        </xsl:template>
</xsl:stylesheet>

Will I be ensured that C will be processed after B and after A,etc?

Thanks,

Matt

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



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