[
Lists Home |
Date Index |
Thread Index
]
- From: David Carlisle <davidc@nag.co.uk>
- To: xml-dev@ic.ac.uk
- Date: Thu, 9 Sep 1999 09:15:08 +0100 (BST)
You'd probably be better asking xsl questions on xsl-list rather than
xml-dev:
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
but anyway...
The answer to your question is no, but don't despair:-)
<xsl:if test="Cond1">
<!-- this sets GlobaleVariable in the current scope -->
<xsl:variable name="GlobaleVariable" select="1">
<!-- the current scope ends here -->
</xsl:if>
<xsl:if test="Cond2">
<!-- this sets GlobaleVariable in the current scope -->
<xsl:variable name="GlobaleVariable" select="2">
<!-- the current scope ends here -->
</xsl:if>
You don't want a condition to control whether or not to set a variable,
you want to set a variable to an expression who's value depends on a
condition:
<xsl:variable name="GlobaleVariable">
<xsl:choose>
<xsl:when test="Cond1">
<xsl:value-of select="...1"/>
</xsl:when>
<xsl:when test="Cond2">
<xsl:value-of select="...2"/>
</xsl:when>
</xsl:choose>
</xsl:variable>
David
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|