Scherler, Thorsten wrote:
with (where *expr* is a parameter parsed from a formular):
expr=date[date='Nov 28']
...
<xsl:param name="expr" />
...
<xsl:apply-templates select="{$expr}"/>
This is not working, neither *select="$expr"*, nor *select="'{$expr}'"*
The value of the select attribute must be an XPath expression itself,
and it must evaluate into a node set. The first, {$expr}, is not a
valid XPath expression. The second, $expr, evaluates to the string
'date[date='Nov 28']',
is it parsed with '' or without? If without why it isn't valid? But I guess it will be parsed with '' and that's reason why it is not valid, right.
King regards </thorsten>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
