Subject: Re: 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 |
- RE: Number of times apply-templates gets executed., (continued)
- Passin, Tom - Tue, 7 Jan 2003 11:20:40 -0500 (EST)
- cknell - Tue, 7 Jan 2003 11:28:56 -0500 (EST)
- Martinez, Brian - Tue, 7 Jan 2003 11:37:12 -0500 (EST)
- Patel, Viral - Tue, 7 Jan 2003 12:06:59 -0500 (EST)
- David Carlisle - Tue, 7 Jan 2003 13:42:22 -0500 (EST) <=
- Wendell Piez - Tue, 7 Jan 2003 14:38:32 -0500 (EST)
- Corey Snow - Tue, 7 Jan 2003 12:25:07 -0500 (EST)
|
|