Subject: Re: variable problem
From: Jo Bourne <venus@xxxxxxxxx>
Date: Sat, 3 Feb 2001 09:59:58 +1100
|
I need match="$table_name" to result in match="abc" not
match="/page/@table_name" is there some other way I can do this than
with a variable?
thanks
Jo
At 2:31 PM +0000 2/2/01, David Carlisle wrote:
> it doesn't work (the document won't parse anymore). Is there
something I have misunderstood about where you can and cannot call a
variable?
Yes, you can't use variables in match expressions.
It isn't clear what you are trying to do.
If
table_name=<xsl:value-of select="$table_name" />
produces
table_name=abc
Did you intend
<xsl:template match="$table_name">
to act like
<xsl:template match="abc">
or
<xsl:template match="/page/@table_name">
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet delivered
through the MessageLabs Virus Control Centre. For further information visit
http://www.star.net.uk/stats.asp
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
--
Jo Bourne
Manager Web Systems Development
Virtual Artists Pty Ltd
email: venus (at) va.com.au ph: +61 2 9590 8749
web: http://www.va.com.au mobile: +61 414 498 646
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|