Forum Moderators: open
IRT message board [irt.org]
FAQTS knowledge base [faqts.com]
(edited by: tedster at 10:36 pm (utc) on Mar. 14, 2002)
When you submit the first form, it will send post data to the server. put a hidden parameter in there which can be read when the page refreshes. Then, in a javascript, look for that hidden parameter, and if TRUE, do a form2.submit() to submit the second. The screen would look like it refreshed, but it should happen quick enough to avoid looking odd.
Let us know if that works.
Say that you have two additional "blank" frames. In the FORM tag, set the TARGET to the different frames ..
When the user clicks the button, let it point to a JavaScript function looking somewhat like this:
document.firstform.submit();
document.secondform.submit();
That should work ..