xsl-list
[Top] [All Lists]

Re: [contains] wierd error with contains function

2002-12-19 02:19:13

  You use
  
  <xsl:variable name="watchFor" select="xsl,list"/>
  
  you should use
  
  <xsl:variable name="watchFor">xsl,list<xsl:variable/>

Actually it's a lot kinder to the system if you use

<xsl:variable name="watchFor" select="'xsl,list'"/>

The former is a result tree fragment corresponding to a node set with a
root node and a text node with value "xsl,list", the latter is the
string "xsl,list"

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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



<Prev in Thread] Current Thread [Next in Thread>