An Asp.net page can have only one server-side Form tag.
A
Correct answer
Explanation
ASP.NET pages can only contain one server-side Form tag because the page framework expects a single form for postback processing. Multiple runat="server" forms would cause postback event handling conflicts since the framework can only determine which form caused the postback if there is one form.