[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] XSL template "namespace" problem
Subject: Re: [xsl] XSL template "namespace" problem
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 29 Mar 2006 16:23:32 +0100
|
> The above code parses correctly via xsltproc, b
That would be strange. XSL files have to be well formed XML documents
and XML attributes can not contain element narkup (or any other use of
the < character)
<DIV ID='<xsl:value-of select=
is not well formed XML so should be rejected by the XMl parser before
XSL starts.
You want <DIV ID='{fname}"
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
________________________________________________________________________
|