Forum Moderators: open
Thanks
Mark
<FORM NAME="frmOUTER" METHOD="POST" ACTION="PROC.ASP")
<FORM NAME="frmSubForm1" METHOD="POST" ACTION="S1.ASP">
...SOME CODE...
</FORM>
<FORM NAME="frmSubForm2" METHOD="POST" ACTION="S2.ASP">
...SOME CODE...
</FORM>
<FORM NAME="frmSubForm3" METHOD="POST" ACTION="S3.ASP">
...SOME CODE...
</FORM>
</FORM>
Sorry, you cannot put a form element inside another form element. Check out this W3C page [w3.org] -- #17.3
It says:
<!ELEMENT FORM - - (%block;¦SCRIPT)+ -(FORM) -- interactive form -->
and the red section there means that a form element cannot contain another form element.
I suppose it's better to ask what you're hoping to accomplish. There's always a way, but sometimes you need to think outside the box a little bit.