On 08.11.2005 08:06, Derek Hohls wrote:
<a><xsl:attribute name="href">custdata_popup?bunit_num=
<xsl:value-of select='sql:row[2]/sql:param1'/><xsl:attribute></a>
(be careful to avoid extra spaces and lines when using this
approach)
Above the extra spaces are only important infront and after the text
'custdata..._num='
Another possibility is to wrap the text in <xsl:text>:
<a>
<xsl:attribute name="href">
<xsl:text>custdata_popup?bunit_num=</xsl:text>
<xsl:value-of select='sql:row[2]/sql:param1'/>
</xsl:attribute>
</a>
Makes the XSLT mostly more readable.
Jörg
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]