Hi,
I have a website that was designed by a third party and contains several form, the forms are not nested so the HTML is valid. Now I am trying to port this HTML into an ASP.NET page. The controls in some of the forms require AJAX extenders (some Textboxes with Autocomplete) and I end up having Forms in Forms. The browser does not complain but I know it's wrong.
What is the best approach to porting this into an ASP.NET page? Does an ASP.NET page require multiple forms? The way I am understanding it is that all actions on the page get handled by the one CodeBehind class for this page anyways.
Thanks, Ben