[xsl] Assigning values to variables

Subject: [xsl] Assigning values to variables
From: "Haque, Suraiya" <Suraiya.Haque@xxxxxxx>
Date: Mon, 20 Aug 2001 09:32:11 -0400
How do you assign values to a variable once they've already been declared? I
have a simple template as follows, but I can't assign a value to LastDate as
I'd like:

<xsl:variable name="LastDate">None</xsl:variable>
<xsl:template name="DoTitle">
    <xsl:param name="Date">N/A</xsl:param>
    <xsl:param name="Time">N/A</xsl:param>

    <xsl:variable name="CurrentDate" select="concat($Date,$Time)"/>
	<xsl:if test="$LastDate = 'None'">
    <td>First<xsl:value-of select="$LastDate"/>/<xsl:value-of
select="$CurrentDate"/></td>
    </xsl:if>
	<xsl:if test="$CurrentDate = $LastDate">
    <td><xsl:value-of select="$Date"/>:<xsl:value-of select="$Time"/></td>
    </xsl:if>
	<xsl:if test="$CurrentDate != $LastDate">
    <td></td>
    </xsl:if>
</xsl:template>

Thanks for any help!

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


Current Thread