Re: [xsl] Number of times apply-templates gets executed.

Subject: Re: [xsl] Number of times apply-templates gets executed.
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 7 Jan 2003 18:42:19 GMT
I think you probably want

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.1">

<xsl:variable name="xslSearchText"></xsl:variable>
<xsl:variable name="xslSearchState"></xsl:variable>


<xsl:template match="/">
	<xsl:apply-templates select="//state[@name=$xslSearchState]"/>
</xsl:template>


<xsl:template match="state">
<xsl:variable name="c" select="county/community[@name=$xslSearchText]"/>
<xsl:choose>
<xsl:when test="$c">
<xsl:apply-templates select="$c"/>
</xsl:when>
<xsl:otherwise>
ERROR: nothing found
</xsl;otherwise>
</xsl:choose>
</xsl:template>


<xsl:template match="community">
Just basically displaying the content of the node in HTML Table
format.
</xsl:template>


</xsl:stylesheet>

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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


Current Thread