This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: XSL variable...


> You need to declare a single variable, and set its value 
> conditionally:
> 
> <xsl:variable name="wasLeft">
>   <xsl:choose>
>     <xsl:when test="some condition">0</xsl:when>
>     <xsl:otherwise>1</xsl:otherwise>
>   </xsl:choose>
> </xsl:variable>

Really?  Does this mean that a variable is evaluated every time it is accessed?  I thought it was evaluated when it was defined, and then static while in scope.

-- 
  Thorbjørn


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]