Re: iterate on a value

2005-07-01 Thread Dewitte Rémi
Thanks for your solutions. Rémi Le Vendredi 1 Juillet 2005 08:16, Nikola Milutinovic a écrit : > David Rickard wrote: > > If you don't mind mixing Struts and JSTL, use a loop, with > > the "end" value being the "number of children" parameters; > > > > At 11:00 AM 6/30/2005, Dewitte Rémi wrote: >

Re: iterate on a value

2005-06-30 Thread Nikola Milutinovic
David Rickard wrote: If you don't mind mixing Struts and JSTL, use a loop, with the "end" value being the "number of children" parameters; At 11:00 AM 6/30/2005, Dewitte Rémi wrote: Hello ! In my form , i ask the number of children. On the next page, i'd like to display as many textboxes as

Re: iterate on a value

2005-06-30 Thread David Rickard
If you don't mind mixing Struts and JSTL, use a loop, with the "end" value being the "number of children" parameters; At 11:00 AM 6/30/2005, Dewitte Rémi wrote: Hello ! In my form , i ask the number of children. On the next page, i'd like to display as many textboxes as children to get their n

iterate on a value

2005-06-30 Thread Dewitte Rémi
Hello ! In my form , i ask the number of children. On the next page, i'd like to display as many textboxes as children to get their name. provides iteration on array or collection, how can i iterate on the number of children ? Thanks ! ---