Subject: Re: xsl:if
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 1 Apr 2005 17:34:11 +0100
|
<xsl:if test="$id=<xsl:value-of select="id" />
XSLT has to be well formed XML You can't have a < in an XML attribute
value so this will have been rejected by the XML parser before XSLT
starts.
The answer is simpler than you think
<xsl:if test="$id=id">
...
</xsl:if>
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 |
- xsl:if
- tim - 1 Apr 2005 16:19:38 -0000
- António Mota - 1 Apr 2005 16:30:19 -0000
- David Carlisle - 1 Apr 2005 16:34:40 -0000 <=
- Michael Kay - 1 Apr 2005 16:53:21 -0000
- <Possible follow-ups>
- tim - 3 Apr 2005 18:42:30 -0000
|
|