Subject: Re: Use of Parameter with conditional logic - please help!
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 2 Aug 2001 21:58:20 +0100
|
<xsl:when test="[BaseSymbol=<xsl:value-of select="$comsym"/>">
an XSL stylesheet has to be well formed XML so clearly you can't have an
xsl:value-of element inside an attribute.
the syntax to access a variable is the syntax you used in the select
expressioon, $xxx
so
the above would be
<xsl:when test="BaseSymbol=$comsym">
(having also deleted a spurious [)
which would test the strinbg value of a BaseSymbol element against the
global variable or parameter comsym
which might be what you want (although you don't show a definition of
comsym, perhaps yoou meant $basesym here?)
Also
<A>
<xsl:attribute name="HREF">headline.asp?storyid=<xsl:value-of
select="BaseSymbol"/>
</xsl:attribute>
could rather more simply be written
<A HREF="headline.asp?storyid={BaseSymbol}">
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|