xsl-list
[Top] [All Lists]

Re: Correction

2005-05-17 11:21:12
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/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



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