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
ECTED] Sent: Tuesday, March 30, 2004 3:07 PM To: [EMAIL PROTECTED] Subject: Handling parameters not in a form bean Hi all, I am wondering if there is a way that I can access submitted form information in an action that may not be a member of any form bean? Do name/value pairs submitted to an a

Handling parameters not in a form bean

2004-03-30 Thread Andy Engle
Hi all, I am wondering if there is a way that I can access submitted form information in an action that may not be a member of any form bean? Do name/value pairs submitted to an action *have* to be in a form bean? If they don't, how could they be accessed? I have a situation where my applicatio