Multiple choice technology programming languages

The number of forms that can be added to a aspx page is.

  1. 1

  2. 2

  3. 3

  4. more than 3

Reveal answer Fill a bubble to check yourself
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.