This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Concat


Hi,

How can tell me what is wrong with me ?

I have the XML :

<Picture>
    <Name>PictureName</Name>
    <Location>PictureLocation></Location>
</Picture>

And the XSL :

( I have to use of Name and Location for some reasons into my template )

<xsl:variable name="Named"><xsl:value-of select="Picture/Name"
/></xsl:variable>
<xsl:variable name="Located"><xsl:value-of select="Picture/Location"
/></xsl:variable>

<xsl:variable name="URL" select="concat($Located,$Named)" />

< A HREF="$URL" > ........

But this doesn't work, I get HREF="concat($Located,$Named)">

Thanks

PS


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]