[Home] [By Thread] [By Date] [Recent Entries]
> <xsl:template match="/"> > <html> > <xsl:apply-templates select="." mode="html"/> > </html> > </xsl:template> You are trying to apply on the document node in the html mode. It is looking to be matched by: <xsl:template match="/" mode="html"/> you probably want to simply apply templates so you can get to the HTML root element. best, -Rob
|

Cart



