On 12.Mar.2003 -- 05:19 PM, Lionel Crine wrote:
> I'm trying to use a "for" loop into my xsp page but the "<" character is 
> interpreted by the sax parser.
> 
> <xsp:logic>
> ...
> for (int i = 0; i < array.length(); i++) {
> ...
> </xsp:logic>
> 
> Why ?

XML - use the entity reference instead &lt; or put a CDATA around
it. Same with ">" (&lt;) and "&" (&amp;).

        Chris.
-- 
C h r i s t i a n       H a u l
[EMAIL PROTECTED]
    fingerprint: 99B0 1D9D 7919 644A 4837  7D73 FEF9 6856 335A 9E08

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to