[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> schreef:
> <xsl:text><i:include src="</xsl:text><xsl:value-of > select="@dasl:path"/><xsl:text>"/></xsl:text> This won't work. What you need is simply: <i:include src="[EMAIL PROTECTED]:path}/> By using < and > you're basically saying: this is not an XML element, don't interpret it as such. And so the include transformer ignore it. Basically, when you intend something to be XML, write it as XML. There are very few exceptions of this. (One is the sendmail transformer, I think; if you want to send html, I think you have to use <s or CDATA. mcv. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
