Re: Handling parameters not in a form bean

2004-03-30 Thread Bill Siggelkow
Andy, you can access form values by using request.getParameter("prod_1"); etc.. However, it sounds a simpler way would be to use an indexed property on your form bean. I have used these on web applications with spreadsheet-like input fields. Andy Engle wrote: Hi all, I am wondering if there

RE: Handling parameters not in a form bean

2004-03-30 Thread Andy Engle
Craig Berry <[EMAIL PROTECTED]> wrote: > Easily done; just grab them using getParameter on the request object > that's passed to your execute method. Ahh that sounds easy -- that must've been the one thing I didn't try. I'll give it a whirl. Thanks! Andy

RE: Handling parameters not in a form bean

2004-03-30 Thread Craig Berry
Easily done; just grab them using getParameter on the request object that's passed to your execute method. If you want to be a little slicker, you can also override the request processor to populate your form in a special way. -Original Message- From: Andy Engle [mailto:[EMAIL PROTECTED]