Subject: concat Param and String in XSL
From: "Marc Tricou" <Quarc@xxxxxx>
Date: Fri, 21 Apr 2000 13:29:15 +0200
|
Hi!
I try to make a combination of a parameter and a string in a xsl tag.
how do i have to do this?
...
<xsl:param name="targetdir" select="."/>
<xsl:variable name="image-dir">../citywest1_files</xsl:variable>
<xsl:template match="page">
<xsl:apply-templates select="hotel"/>
</xsl:template>
<xsl:template match="hotel">
<redirect:write
file="concat('$targetdir','de_hotels/hotel{@id}.html')"> --------
here it's goint wrong? what's wrong
...
Marc
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|