On Monday 18 Mar 2002 17H:51 pm, you wrote:
> and familiar boolean operatings (e.g., "&&" for "and", "||" for "or") will
> likely be added to the EL before it's done.
>
> If you're asking whether or not JSTL has a tag that aborts the current
> page, the answer is currently "no."

Yep, that was what I was asking. I never did like the idea of a "return" in 
JSP code, however there is a lot of it about and I was wondering whether it 
could be done using JSTL.

Glad you mentioned the fact that || and && are not supported yet as I was 
just trying to use that ;-)

But now I'm trying to figure out array and List objects. If I have a list or 
an array, I'd expect to be able to access an element via [x], ie:

<c:out value="{$myList[5]}" />

would be equivelent to:

out.write(myList.get(5));

but it seems this isn't the case ;-)

-- 
John Baker, BSc CS.
Java Developer, TEAM/Slb. http://www.teamenergy.com
Views expressed in this mail are my own.

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

Reply via email to