Is Multiple Forms(s:form) in one Jsp possible?

2008-02-07 Thread Thomas Ramapuram
Hi, I just wanted to know if it is possible to have multiple s:form in one jsp. Each of the forms submit to a diffrent action. The problem I faced is that. If I place multiple forms in one jsp. The initials forms closing tags are commented out when the tag is rendered. Is this expected

Is Multiple Forms(s:form) in one Jsp possible?

2008-02-07 Thread Thomas Ramapuram
Hi, I just wanted to know if it is possible to have multiple s:form in one jsp. Each of the forms submit to a diffrent action. The problem I faced is that. If I place multiple forms in one jsp. The initials forms closing tags are commented out when the tag is rendered. Is this expected

Re: Is Multiple Forms(s:form) in one Jsp possible?

2008-02-07 Thread Dave Newton
--- Thomas Ramapuram [EMAIL PROTECTED] wrote: I just wanted to know if it is possible to have multiple s:form in one jsp. Each of the forms submit to a diffrent action. The problem I faced is that. If I place multiple forms in one jsp. The initials forms closing tags are commented out

Re: [struts] Is Multiple Forms(s:form) in one Jsp possible?

2008-02-07 Thread Dale Newfield
Thomas Ramapuram wrote: I just wanted to know if it is possible to have multiple s:form in one jsp. Each of the forms submit to a diffrent action. Just make sure they're not nested inside one another, and that no two elements on the rendered page have the same id attribute. -Dale

Re: Is Multiple Forms(s:form) in one Jsp possible?

2008-02-07 Thread Jeromy Evans
Dave Newton wrote: --- Thomas Ramapuram [EMAIL PROTECTED] wrote: I just wanted to know if it is possible to have multiple s:form in one jsp. Each of the forms submit to a diffrent action. The problem I faced is that. If I place multiple forms in one jsp. The initials forms closing tags

Re: Is Multiple Forms(s:form) in one Jsp possible?

2008-02-07 Thread Dave Newton
--- Jeromy Evans [EMAIL PROTECTED] wrote: The commenting effect is something one of the browsers does when viewing invalid html (forget which browser). It comments out the html for nodes that were impossible to include in the DOM. I've seen it when forms are accidentally nested as the OP

Re: Is Multiple Forms(s:form) in one Jsp possible?

2008-02-07 Thread Jeromy Evans
Dave Newton wrote: --- Jeromy Evans [EMAIL PROTECTED] wrote: The commenting effect is something one of the browsers does when viewing invalid html (forget which browser). It comments out the html for nodes that were impossible to include in the DOM. I've seen it when forms are