Re: [xsl] XPath question.

Subject: Re: [xsl] XPath question.
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 7 May 2003 09:31:49 +0100
<xsl:if test="starts-with(//title, 'Q')

do you really want // there, testing if any title element anywhere in
the document starts with Q ?  This is very expensive.
I suspect you mean starts-with(entry/title, 'Q') so as to just test the
title of this entry.

> As it is, I can't get the inserted.text to appear...no matter what I
> do.
Well your example input doesn't have a title starting with Q, if any did
your template should get called.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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


Current Thread