This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Use of Parameter with conditional logic - please help!




          <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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]