RE: Conditional IE5 xsl

Subject: RE: Conditional IE5 xsl
From: Ben Robb <Ben@xxxxxxxxxx>
Date: Mon, 10 Apr 2000 11:10:24 +0100
> I need to execute different html code depending on the
> value of a node eg. ("/Form/Name").

<xsl:choose>
	<xsl:when select="/Form/Name[. = 'Brown']">
		<!-- do something -->
	</xsl:when>
	<xsl:otherwise>
		<!-- do something else -->
	</xsl:otherwise>
</xsl:choose>


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


Current Thread