Re: html:form array submit, capture inside ActionFrom question

2007-04-20 Thread john lee
David, tks for ur help. actually, my goal is to have multiple submit button on same page, do same thing, but carry different input value(different search result). john David Conrad <[EMAIL PROTECTED]> wrote: On 4/20/07, john lee wrote: > what is S1 tags? i still use struts 1.3.8. S

Re: html:form array submit, capture inside ActionFrom question

2007-04-20 Thread David Conrad
On 4/20/07, john lee <[EMAIL PROTECTED]> wrote: what is S1 tags? i still use struts 1.3.8. Struts 1.x. S2 would be Struts 2.x. So, with 1.3.8, you are still using S1. So, no possible to submit formay array? > possible for me to implement the following code? > > for (i=1:i>

Re: html:form array submit, capture inside ActionFrom question

2007-04-20 Thread john lee
what is S1 tags? i still use struts 1.3.8. So, no possible to submit formay array? tks john Dave Newton <[EMAIL PROTECTED]> wrote: --- john lee wrote: > possible for me to implement the following code? > > for (i=1:i> { >response.Write("> styleId="+i); >

Re: html:form array submit, capture inside ActionFrom question

2007-04-20 Thread Dave Newton
--- john lee <[EMAIL PROTECTED]> wrote: > possible for me to implement the following code? > <% > for (i=1:i<=10:i++) > { >response.Write(" styleId="+i); >response.Write(" value="+i); >response.Write(""); >response.Write(""); >} > %> >