xsl-list
[Top] [All Lists]

Re: [xsl] Param redirection

2006-07-31 11:42:00
<xsl:variable name="result">
<xsl:choose>
  <xsl:when test="$a_or_b" = $a> <!-- or "a" if that's what you mean -->
        <xsl:value-of select="$a" />
  </xsl:when>
  <xsl:when> <!-- or <xsl:otherwise> ... -->
       <xsl:value-of select="$b" />
   </xsl:when>
</xsl:choose>
</xsl:variable>

then <xsl:value-of select="$result" />.
-Steve

On 7/31/06, David Nesbitt <dnesbitt(_at_)vuetechnology(_dot_)com> 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".

How can I use the value of one param (i.e. "a_or_b") as the name of the
param for the value-of element?  Or is there another way to accomplish
this redirection in XSLT?

Thanks in advance for any assistance.

Regards,
Dave

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>