Hi,
    If it is required to send all the values to the next page, you can submit a form 
and along with this request, you can get the values of the fileds of the other two 
forms and send them as query. Some thing like this,

var temp1=document.form2.field1.value;
var temp2=document.form3.field1.value;
document.form1.action="myjsp.jsp?"querystring+"temp1 and temp2 and next query....;
document.form1.submit();

Or you may wish to use, the hidden variables defined in the form1 for all the fields 
of form2 and form3.

Smita


Gunaseelan Nagarajan <[EMAIL PROTECTED]>:

> Hi Sridhar,
> It is not possible to submit more than form at the same time in the
> same
> page.  It is possible only if you have the forms in separate windows or
> frames. Through javascript you can get a reference to the other forms
> and
> call the submit() method on them.
>
> regards,
> Nagarajan.
>
> On Thursday 16 May 2002 19:11, you wrote:
> > Hi,
> >
> > I have a jsp page. In that page i have 3 HTML forms and each one is
> having
> > submit button. If I click any submitt i need to send all the three
> forms.
> >
> > Could any one tell me how can I submit multiple forms in one submit.
> >
> >
> > I appreciate your help,
> >
> >
> > thanks,
> >
> > Sridhar Boddula
> >
> >
> ===========================================================================
> > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> > JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body:
> "set
> > JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found
> at:
> >
> >  http://archives.java.sun.com/jsp-interest.html
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.jsp
> >  http://www.jguru.com/faq/index.jsp
> >  http://www.jspinsider.com
>
> ===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com
>

-------------------------------------------------
Sify Mail - now with Anti-virus protection powered by Trend Micro, USA.
Know more at http://mail.sify.com

Take the shortest route to success!
Click here to know how http://education.sify.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to