I have the HTML code given below. When I try to submit the inner form within the div element I found that the form submitted twice.
<html>
<head></head>
<bodY>
<form method="post" action="test.do">
<input type="text" name="test">
<div id="testdiv">
<form method="post" action="test.do">
</form>
</div>
</form>
</body>
I tested the above with IE7, and I have no idea how to do this.