RE: [xsl] xsl:when, xsl:otherwise question?

Subject: RE: [xsl] xsl:when, xsl:otherwise question?
From: "Joe Heidenreich" <HeidenreichJ@xxxxxxxx>
Date: Thu, 3 Feb 2005 14:33:30 -0500
I'm not exactly sure what you are trying to accomplish... But you can
embed your statements like this:

<xsl:choose>
	<xsl:when></xsl:when>
	<xsl:otherwise>
		<xsl:choose>
			<xsl:when></xsl:when>
			<xsl:otherwise></xsl:otherwise>
		</xsl:choose>
	</xsl:otherwise>
</xsl:choose>

-----Original Message-----
From: Nick Roberts [mailto:nick_roberts5@xxxxxxxxxxx]
Sent: Thursday, February 03, 2005 2:25 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] xsl:when, xsl:otherwise question?

Is it possible to implement an else-if condition using the above.

All literature i've read only seems to use xsl:when and xsl:otherwise...
no "xsl:else-when" condition?

Just wondered. Cheers

Current Thread