This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Using Variable in Template Matching....


> Can i do
> <xsl:apply-templates match="$param"/>
> 
> and....
> 
> <xsl:template match="$param"/>

No, as this can lead to a circular definition (e.g. a global variable,
whose content instantiates the template that refers to the same
variable in its match attribute).

Also, it is not clear whay type of nodes you'd be trying to match
above...

But you can do:

<xsl:apply-templates select="$param"/>

Cheers,
Dimitre Novatchev.





__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]