Re: [xsl] Problem with Output special char in HTML attribute

Subject: Re: [xsl] Problem with Output special char in HTML attribute
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 10 Dec 2004 23:31:41 GMT
sorry, I didn't understand this question at all, you posted a
stylesheet, and described the small input document, but you didn't
describe the problem you are having with the stylesheet, and how it
relates to your problem with variables. 

looking back over the thread perhaps you ust want to generate 5 links
without reference to the source doc.
You could use a simple recusive template for that or even simpler:
<xsl:for-each select="(document('')//*)[position()&lt;6]">
 <a href="#" tabindex="{position()}">link<xsl:value-of select="position()"/></a>
</xsl:for-each>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
________________________________________________________________________

Current Thread