Re: [xsl] Release Date vs. Highlight Until Date

Subject: Re: [xsl] Release Date vs. Highlight Until Date
From: Robert Koberg <rob@xxxxxxxxxx>
Date: Mon, 20 Sep 2004 17:43:52 -0700
Robert Koberg wrote:


So you set a parameter on the transformation and catch it in the transformation. If the date parameter was not sent to the transformation it will default to an empty string, ''.


uff... I took out an example that woould force the empty string. e.g. :

<xsl:stylesheet ...attrs...>
 <xsl:param name="current-date" select="''"/>

 <xsl:template match="/">
   <xsl:choose>
     <xsl:when test="not($current-date='')">
       <xsl:value-of select=""/>
     </xsl:when>
     <xsl:otherwise>
       <xsl:text>No current date was passed in...</xsl:text>
     </xsl:otherwise>
 </xsl:template>

</xsl:stylesheet>



good luck,
-Rob

Current Thread