Multiple choice technology programming languages

Given an ASP.NET Web Form called WebForm1, what class does the WebForm1 class inherit from by default ?

  1. System.Web.Form

  2. System.Web.GUI.Page

  3. System.Web.UI.Page

  4. System.Web.UI.Form

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

All ASP.NET Web Forms inherit from System.Web.UI.Page by default. This base class provides essential functionality for page lifecycle events, view state management, and server controls. Options A and D are incorrect because System.Web.Form and System.Web.UI.Form don't exist in the .NET framework class hierarchy.