> In the xsl file, I use the following trick:
> <xsl:variable name="link">
> ../../details/invoice/detail_1.htm
> </xsl:variable>
>
Change it to
<xsl:variable name="link">
<xsl:text>../../details/invoice/detail_1.htm</xsl:text>
</xsl:variable>
or to
<xsl:variable name="link" select="'../../details/invoice/detail_1.htm'"/>
to avoid the extra white space.
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- Re: Arrays in XSL, (continued)
- David Carlisle - Thu, 15 Nov 2001 13:35:09 -0500 (EST)
- yan bai - Thu, 15 Nov 2001 16:57:35 -0500 (EST)
- Jörg Heinicke - Thu, 15 Nov 2001 17:35:57 -0500 (EST)
- yan bai - Thu, 15 Nov 2001 19:57:26 -0500 (EST)
- Michael Kay - Fri, 16 Nov 2001 04:20:10 -0500 (EST) <=
|
|