RE: [xsl] using boolean to compare id numbers

Subject: RE: [xsl] using boolean to compare id numbers
From: "Andrew Welch" <ajwelch@xxxxxxxxxxxxxxx>
Date: Thu, 20 Jan 2005 17:49:21 -0000
<xsl:template match="/">
</xsl:template>
^^^^^^^^^^^^^^^^^^^^^^^

You won't get very far with the above - either you need to remove it (to
allow the default template to work) or insert an apply-templates:

<xsl:template match="/">
	<xsl:apply-templates/>
</xsl:template>

Cheers
andrew

Current Thread