with vbscript, it can be done using the 'form.submit' command. You can write it directly, into your page, i think, like below:
Code:
<SCRIPT LANGUAGE="VBSCRIPT">
Private Sub SubmitForms()
form1.submit
form2.submit
form3.submit
End Sub
</SCRIPT>
Then, in your form code, write:
Code:
<INPUT TYPE="BUTTON" onClick="VBScript:SubmitForms()">
Correct me if I'm wrong, guys, but I believe this should work. I am a little rusty on syntax, though, so I would get a second opinion if I was you. Also, I'm unsure of the "VBScript:SubmitForms()" line. You may be able to just say "SubmitForms()".
Good luck with your scripts!
Bookmarks