Re: XSL stylesheet syntax help2003-12-03 07:21:12dan(_at_)theroadside(_dot_)org wrote: <xsl:when test="<xsl:value-of select="InputType"/>='S'">
message.xsl:23: error: Unescaped '<' not allowed in attributes values
<xsl:when test="<xsl:value-of select="InputType"/>='S'">
I think you need:
<xsl:when test="{InputType}='S'">
However this just got past that error to run smack into several more.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
|
||||||||||||||||