If the forms are nested ,i am not able to submit it in ie6
- by jaan
If the forms are nested ,i'm not able to submit it 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 submit button in ie6.
Not: But i can't avoid the nesting of forms.this code is just a sample
Thanks in advance!