Multiple choice .net asp

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

In ASP.NET Web Forms, only one server-side form (runat="server") is allowed per page. This is because the Web Forms model relies on a single postback mechanism to manage state via ViewState. Multiple client-side HTML forms are possible, but only one server form.