[Home] [By Thread] [By Date] [Recent Entries]
> what you want is either: > > <xsl:template match="/"> > ... > </xsl:template> > > or > > <xsl:when test=".='On'"> This still would always match the xsl:otherwise because of the spaces around the 'On'. Use <xsl:when test="normalize-space(.)='On'"> if the spaces are insignificant, or <xsl:when test=".=' On '"> if not. Jarno XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



