This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Conditional IE5 xsl


> As far as I can see, MSXML3 doesn't yet support <xsl:call-template> (at

Is is supported for XSLT. My guess is that you are using the wrong
namespace. You need to use
xmlns:xsl="http://www.w3.org/1999/XSL/Transform".

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="html" version="4.0" encoding="UTF-8"/>
<xsl:template match="/">
 <xsl:call-template name="test"/>
</xsl:template>
<xsl:template name="test">
 test template
</xsl:template>
</xsl:stylesheet>

Rich.



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]