| Programming C# C++ (7) Delphi (604) Java (8) JavaScript (55) Document (8) Events (8) Strings (3) perl (40) php (12) VBScript (1) Visual Basic (1) |
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:
|