Re: [xsl] ?Formating Issue?

Subject: Re: [xsl] ?Formating Issue?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 4 Nov 2003 15:37:56 GMT
<xsl:for-each select="livelink">

why the for-each? You only have one livelink element.
probably you want something like


<xsl:template match="livelink">
<table>
<tr>
<td>You are here >>></td>
<xsl:for-each select="location">
<td><xsl:value-of select="."/></td>
</xsl:for-each>
</tr>
</table>
</xsl:template>

although that doesn't do anything with your  path='..\' attribute.

David


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
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