Subject: Re: Using a variable to get the value of an element
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Sat, 26 Jan 2002 12:01:28 +0000
|
I wrote:
> or you need to create the $hello variable without the extraneous
> whitespace, with:
...
> or:
>
> <xsl:variable name="hello">
> <xsl:value-of select="concat('officename1_', $PageLang)" />
> </xsl:variable>
or, better:
<xsl:variable name="hello"
select="concat('officename1_', $PageLang)" />
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|