An ASP.NET page can contain multiple HTML forms on but there can be only one form designated as runat=”server”.
You could create the appearance of two or more forms by placing all theĀ fields in the single server-side form and then using several submit button each which has a different click event taking data from different c0ntrols.
If you elect to use standard HTML forms, you can use Request.Form to access the fields in those forms.