Yep, the first question has to be why are you nesting your forms? This is probably what is confusing ASP.Net more than anything. If you remove the outer form does it work?
The HTML specification does not allow nested forms.
You might well find that the opening tag of the first inner form is being ignored (depending on browser and standards mode), then your main <form>
is being closed by the first inner forms closing tag, and then the subsequent forms are working "as expected".