RE: [xsl] Param redirection

Subject: RE: [xsl] Param redirection
From: "David Nesbitt" <dnesbitt@xxxxxxxxxxxxxxxxx>
Date: Mon, 31 Jul 2006 11:54:45 -0700
Thanks Steve and Mukul!  That is exactly what I was looking for!!!

Regards,
Dave

-----Original Message-----
From: Mukul Gandhi [mailto:gandhi.mukul@xxxxxxxxx]
Sent: Monday, July 31, 2006 11:43 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Param redirection

On 8/1/06, David Nesbitt <dnesbitt@xxxxxxxxxxxxxxxxx> wrote:
> This is a question about how to program with XSLT.
>
> I would like to have the following parameters in my stylesheet:
>
> <xsl:param name="a_or_b"/>
> <xsl:param name="a"/>
> <xsl:param name="b"/>
>
> If the value of param "a_or_b" is "a", I would like to output the
value
> of param "a".  If the value of param "a_or_b" is "b", I would like to
> output the value of param "b".

I think this will work for you:

<xsl:choose>
  <xsl:when test="$a_or_b = 'a'">
     <xsl:value-of select="$a" />
  </xsl:when>
  <xsl:when test="$a_or_b = 'b'">
     <xsl:value-of select="$b" />
  </xsl:when>
</xsl:choose>

--
Regards,
Mukul Gandhi

http://gandhimukul.tripod.com

Current Thread