Re: problem with forms

2005-12-12 Thread chhum
Goodness I’m a twit. Thank you! chhum Quoting Wendy Smoak <[EMAIL PROTECTED]>: > On 12/11/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > I think so. I have this in the jsp > > > > > > this writes out as > > > action="/prpi/core/surveys/data_match.do"> > > An empty form? Try puttin

Re: problem with forms

2005-12-11 Thread Ed Griebel
You have a trailing slash on the html:form, so the form element is closed right there and therefore not including the select. Try this instead: ... On 12/11/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Sure > /> > >

Re: problem with forms

2005-12-11 Thread Wendy Smoak
On 12/11/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I think so. I have this in the jsp > > > this writes out as > action="/prpi/core/surveys/data_match.do"> An empty form? Try putting the tag inside the . The select tag will look to the enclosing form tag to find the form bean. --

Re: problem with forms

2005-12-11 Thread chhum
Sure Display Options

Re: problem with forms

2005-12-11 Thread Richard Yee
Can you send the JSP code in which you are trying to access the bean? -R [EMAIL PROTECTED] wrote: I think so I think so. I have this in the jsp this writes out as action="/prpi/core/surveys/data_match.do"> In struts.config Action path is Quoting Richard Yee <[EMAIL PROTECTED]>

Re: problem with forms

2005-12-11 Thread chhum
I think so I think so. I have this in the jsp this writes out as In struts.config Action path is Quoting Richard Yee <[EMAIL PROTECTED]>: > Does the JSP have a html:form tag in it that has the action attribute > > set to an action mapping that has the action form as the value o

Re: problem with forms

2005-12-11 Thread Richard Yee
Does the JSP have a html:form tag in it that has the action attribute set to an action mapping that has the action form as the value of the 'name' parameter? Otherwise, what scope is the action form in? -Richard [EMAIL PROTECTED] wrote: HI, I have an action form, an action and a couple of js