xsl-list
[Top] [All Lists]

Setting multiple params or variables with xsl:choose

2005-09-14 07:43:32
I'm aware of that method of setting xs:variable but in the situation where you
have to set a large number of variables based on a single condition it requires
a huge replication of code.

Are there any better ways ?

TG

-----Original Message-----

Date: Tue, 13 Sep 2005 13:19:32 +0100
From: "Laurent Muchacho" <elmuchacho(_at_)gmail(_dot_)com>
Subject: Re: [xsl] Setting multiple params or variables with xsl:choose

Hi Anthony,

I think that will work

<xsl:variable name="variable_name_one">
<xsl:choose>

<xsl:when test=" test1='true'">value_one</xsl:when>

<xsl:when test=" test2='true'">value_two</xsl:when>

</xsl:choose>

<xsl:variable

Sorry but I don't know how to set up multiple variable

Laurent

--~------------------------------------------------------------------
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>
--~--