Re: [xsl] can a value of a parameter depends on a other value

Subject: Re: [xsl] can a value of a parameter depends on a other value
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 01 Dec 2011 13:13:11 +0000
so, you're almost there, so now you can change

<xsl:param name="page">


to




<xsl:param name="page">
<xsl:variable name="hmm">
<xsl:choose>
<xsl:when test="$page='1'">wahoo</xsl:when>
<xsl:otherwise>humbug</xsl:otherwise>
</xsl:choose>
</xsl:variable>


and change



<xsl:value-of select="$page"/>


to

<xsl:value-of select="$hmm/>


and instead of saying 1 or 2 it should say wahoo or humbug, and you have a variable depending conditionally on the global parameter page
after that it's just a matter if making the right conditions and outputing the right text


David


________________________________________________________________________ The Numerical Algorithms Group Ltd is a company registered in England and Wales with company number 1249803. The registered office is: Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________


Current Thread