| Programming C# C++ (7) Delphi (617) Java (8) JavaScript (31) Document (8) Events (8) ExtJS (9) Strings (3) perl (9) php (4) VBScript (1) Visual Basic (1) New related comments Number of comments in the last 48 hours How to prompt the user with an inputbox in Javascript |
Submit data from more than one form on one page?
(3 votes). Leave comments and/ or rate it.
To achieve this, you need to cheat - by actually using two or better three pages, loaded into separate frames.
|--------------------| |Framed 1 | |(containing Form1) | |--------------------| |Framed 2 | |(containing Form2) | |--------------------| |Frame 3 | | submit button | |--------------------|
The submit button in page 3 will execute two submits as shown in the following code snippet. This button doesn't haven have to be part of a form. In fact, it could be an image or a regular button or even just a link with an href=
Comments:
| ||||||||||||||||||