SubmitAll button, which submit all forms on the page.
i have a small problem...
i have 2 forms(form1 and form2) on one page.
both form1 and form2 has submit buttons. which submits the data to the next page which is
Result.asp and i have some ASP code on Result.asp which gets the value from form1 and form2 separately.
So the submit button for form 1 transmits only username and password.
and submit button for form2 transmits the radio, checkbox, Muliple select list, single select list, and text area
Now i wanna add a button Submitt All which "submits all" that should count the no. of forms on this page which is mypage.asp
Multi List
<SELECT multiple size=3 name=MyList>
<OPTION value=comfort >comfort</OPTION>
<OPTION value=Luxury selected>Luxury</OPTION>
<OPTION value=party >party</OPTION>
Single list
<SELECT name="sList">
<OPTION value=1couple>1 couple</OPTION>
<OPTION value=familyof3>family of 3</OPTION>
<OPTION value=familyof4 selected>family of 4</OPTION>
Text Area
<TEXTAREA name=comments rows=6 wrap=virtual cols=30></TEXTAREA> </UL><BR>
My suggestions is separate the processes. Create one more page, that is the best way.
Btw, r u implementing "membership" feature? if yes, display a login page if the user not yet logged other display the "form2". It will save your time to code