Posted By:
George_Koras
Posted On:
Thursday, May 3, 2001 02:38 AM
I have two forms that should be submitted to different CGI/servlets. Can they be submitted with just one user action, clicking one button or on one link? I tried to add:
document.form1.submit();
document.form2.submit();
in the onClick event of a button but only the second submit() is executed.
I only managed to get this to work when the two forms lie on different frames but I don't want to have to redesign the whole page!
Thanks