Re: [xsl] Problem with case-sensitivity

Subject: Re: [xsl] Problem with case-sensitivity
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 1 Oct 2004 10:12:33 +0100
> <xsl:param name="upperCase" select="ABCDEFGHIJKLMNOPQRSTUVWXYZ"/>

That selects the child element <ABCDEFGHIJKLMNOPQRSTUVWXYZ> of the
current node, if there are no such elements it selects nothing.

You want

<xsl:param name="upperCase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
                                    ^                          ^
                                    ^                          ^
                                    ^                          ^
                                    ^                          ^
                                    ^                          ^
                                    ^                          ^


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