|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Problem in making choices using <xsl:choose>
Sreekanth Try <xsl:when test="$state='AZ'"> for your choose test, like so, <xsl:template match="headline"> <xsl:choose> <xsl:when test="$state='AZ')"> <font face="{$headline-font}" size="{$headline-size}"><xsl:value-of select="$state"/> Arizona </font> </xsl:when> <xsl:otherwise> <font face="{$headline-font}" size="{$headline-size}"><xsl:value-of select="$state"/> Other </font> </xsl:otherwise> </xsl:choose> </xsl:template> Hope that helps, Tim Watts -----Original Message----- From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Sreekanth Pallavoor Sent: Friday, 1 June 2001 12:37 PM To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx Subject: Problem in making choices using <xsl:choose> I am writing one XSLT program, where I need to print different output depending upon different conditions. But the code which checks for different conditions, doesn't seem to be working properly. The relevant part of code is given below. Here I have got a variable "state" getting set to some state code which comes from some external source. If it's value is AZ, I want to print "Arizona" and if it's value is anything else then I want to print "Other". The result I am getting is, it always prints "Arizona" even if $state is set to something other than "AZ". (To double-check, I am printing the $state value also in the output. Even if it is CA, the output I still get is "CA Arizona" and not "CA Other"). Can someone tell me what could be the reason. Thanks. -- Sreekanth <xsl:template match="headline"> <xsl:choose> <xsl:when test="contains($state,'AZ')"> <font face="{$headline-font}" size="{$headline-size}"><xsl:value-of select="$state"/> Arizona </font> </xsl:when> <xsl:otherwise> <font face="{$headline-font}" size="{$headline-size}"><xsl:value-of select="$state"/> Other </font> </xsl:otherwise> </xsl:choose> </xsl:template> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






