Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

submit multiple forms

Status
Not open for further replies.

aperfectcircle

Programmer
Apr 3, 2001
290
US
I have several <form>s on a single webpage. Does anyone know how I can submit them all at once?

I did a search on this forum and it seems like this question has been asked a few times already, but no answer was ever posted...

Thanks,
apc
 
Either combine them into one form, or use individual frames as the targets of the submissions.

<form name=&quot;form1&quot; target=&quot;submit1&quot;>
...
<form name=&quot;form2&quot; target=&quot;submit2&quot;>

<script>
document.form1.submit();
document.form2.submit(); jared@eae.net -
 
The form was being generated dynamically, so I didn't think there was a way to get everything into one form (and still have it work in NN4), but I just figured it out.
I guess the obvious solution was the best...

Thanks for the help.
 
Uhhh...put everything into one form.
I have no idea exactly how I did this... I can look on Monday and see if I can find the page I was working on. If so I'll let you know what I did.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top