<xsl:choose>

Subject: <xsl:choose>
From: "Reich, Eric" <ereich@xxxxxxxxxxxxxx>
Date: Wed, 15 Nov 2000 10:11:35 -0500
Hello, All:

I am trying to implement the <xsl:choose> logic into a file. What I am
hoping to achieve is that if default ='s "false" then it renders false.
If default ='s "true", then it renders true. And, if default ='s "", then
it renders null. 

My code, so far, is as follows:
========================================================
<ATTRIBUTE>
	<NAME>Default</NAME>
	<VALUE>
	<xsl:value-of select="@default"/>
		<xsl:variable name="default">
		<xsl:choose>
			<xsl:when test="@default">
				<xsl:value-of select="@default"/>
			</xsl:when>
			<xsl:otherwise>false</xsl:otherwise>
		</xsl:choose>
	</xsl:variable>
	</VALUE
</ATTRIBUTE>
=========================================================
Am I on the right track, here? What suggestions do you all have that
I should try instead?

Your help, as always, is greatly appreciated. Many thanks...

Eric


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


Current Thread