Multiple choice asp.net

What namespace does a page belong in the .net framework class hierarchy?

  1. System.Web.Control

  2. System.Web.RootBuilder

  3. System.Web.UserControl

  4. system.Web.UI.Page

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

The Page class in ASP.NET belongs to the System.Web.UI namespace, making the full qualified name System.Web.UI.Page. System.Web.Control is the base control class, RootBuilder is for page parsing, and UserControl is for user controls, not pages.