xsl-list
[Top] [All Lists]

RE: [xsl] xsL:with-param, xsl:-param emptiness, Xalan and xsltproc

2006-03-23 09:22:29
Use curly braces around the param's name:

...
<xsl:with-param name="SupportedNegotiate" select="'true'"/>
...
<xsl:value-of select="{$SupportedNegotiate}/>
...


Wrong. 

The select attribute is an XPath expression and XPath expressions do not
contain curly braces.

Michael Kay
http://www.saxonica.com/



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--