[xsl] Re: Correction

Subject: [xsl] Re: Correction
From: "Aron Bock" <aronbock@xxxxxxxxxxx>
Date: Tue, 17 May 2005 18:21:12 +0000
Oleg,

XSL is space-sensitive in some cases:

Instead of:

<xsl:variable name="min1"
select="count(product/formulary/access-shares/tier[1]/option/access-rate[.
&lt;= 0]) + 1"/ >

XMLSpy gives me "The file is not well formed: whitespace expected"
and puts cursor on the "/" before ">"
IE complains that:
"type fatal


Try:


<xsl:variable name="min1"
select="count(product/formulary/access-shares/tier[1]/option/access-rate[.
&lt;= 0]) + 1" />

(No space between terminating "/" and ">"

Regards,

--A

_________________________________________________________________
FREE pop-up blocking with the new MSN Toolbar  get it now! http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/


Current Thread