Multiple choice asp.net What namespace does a page belong in the .net framework class hierarchy? System.Web.Control System.Web.RootBuilder System.Web.UserControl 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.