yes in my xslt there is
<xsl:param name="parametro"/>
<xsl:value-of select="$parametro"/>
enrico
2010-05-18 16:34:48
yes in my xslt there is
<xsl:param name="parametro"/>
<xsl:value-of select="$parametro"/>
The problem is that "hope"
is an xpath expression, and if you need to pass a string value, you need to quote the value as "'hope'"
. This is true at least for libxslt.