Subject: Re: foreach, preceding-sibling::node() and following-sibling::node()
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 25 Oct 2005 14:21:50 +0100
|
> But how can I get the text content between two idlink node?
as far as I can see you don't want to extract anything between two
nodes, you just want the content of idlink.
Something like
<xsl:template match="idlink">
<a href="something">
<xsl:apply-templates/>
</a>
</xsl:template>
You don't give any information about how the URI is determined based on
the input, so I just put "something" in the above.
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
________________________________________________________________________
|