If the forms are nested, I’m not able to submit them in IE6.
<html> <body> <form id="mainform" action="form_action.asp"> <form id="subform" action="form_action1.asp"> <input type="submit" name="FirstName12" value="Mickey" /><br /> </form> First name: <input type="text" name="FirstName" value="Mickey" /> <br/> Last name: <input type="text" name="LastName" value="Mouse" /> <br/> <input type="submit" value="Submit" /> </form> </body> </html>
I’m not able to submit the mainform using the submit button in IE6.
However, I can’t avoid the nesting of forms. This code is just a sample.
Nested forms are not supported in HTML standard.
From The FORM element