The Utility Taglib is old and out of date; it may contain bugs, and it isn't maintained any longer. I strongly recommend looking at a more modern offering like JSTL; our project's "Standard Taglib" provides a compliant JSTL implementation.
-- Shawn Bayern "JSTL in Action" http://www.jstlbook.com On Wed, 16 Oct 2002, Thomas Delnoij wrote: > Good morning. > > I am using OC4J on Windows 2000. > > This jsp: > > <?xml version = '1.0' encoding = 'windows-1252'?> > <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2" > xmlns:ut="http://jakarta.apache.org/taglibs/utility" > > > <jsp:directive.page contentType="text/html;charset=windows-1252"/> > <html> > <head> > <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; > charset=windows-1252"/> > <title>test</title> > </head> > <body> > <ut:for iterations="13" begin="3" varName="counter" > > <jsp:expression> counter </jsp:expression><br /> > </ut:for> > </body> > </html> > </jsp:root> > > ...generates this output: > > 0 > 1 > 2 > 3 > 4 > 5 > 6 > 7 > 8 > 9 > 10 > 11 > 12 > > I would have expected: > > 3 > 4 > 5 > 6 > 7 > 8 > 9 > 10 > 11 > 12 > 13 > 14 > 15 > > I am puzzled. Any suggestions? > > Kind regards. > > Thomas Delnoij > Internet Engineer > IMN - SSE Baarn > > Mobile: +31 6 144 300 14 > EMail: [EMAIL PROTECTED] > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
