Re: [xsl] Create xml file with recursive childnodes

Subject: Re: [xsl] Create xml file with recursive childnodes
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Thu, 14 Aug 2008 10:20:25 +0530
On 8/14/08, Mukul Gandhi <gandhi.mukul@xxxxxxxxx> wrote:
> <xsl:variable name="startName" select="distinct-values($start/@name)" />

This could also be replaced with,
<xsl:variable name="startName" select="$start[1]/@name" />

The rest of the stylesheet remains same ...

-- 
Regards,
Mukul Gandhi

Current Thread