Subject: RE: Quotes within Quotes within Quotes
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Thu, 20 Oct 2005 15:44:20 +0100
|
> <xsl:attribute
> name="{concat('xmlns:schemaLocation='http://www.test.com/bta
> ','$path',
> 'PS_ReportRequest.xsd'')}"/>
>
What output do you expect this to produce?
I suspect you want
<xsl:attribute name="xsi:schemaLocation">
<xsl:text>http://www.test.com/bta</xsl:text>
<xsl:value-of select="$path"/>
<xsl:text>PS_ReportRequest.xsd</xsl:text>
</xsl:attribute>
Michael Kay
|