The number of forms that can be added to a aspx page is.
A
Correct answer
Explanation
ASP.NET allows only ONE server-side form (the form with runat="server" attribute) per .aspx page. This is a fundamental limitation in Web Forms architecture because the page framework expects a single form to manage postback data and view state. You can have multiple HTML forms without runat="server", but only one server form.