Multiple choice .net asp

What namespace does the Web page belong in the .NET Framework class hierarchy?

  1. System.web.UI.Page

  2. System.Windows.Page

  3. System.Web.page

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

In the .NET Framework, the base class for all ASP.NET web pages is System.Web.UI.Page. This class provides the necessary properties and methods (like Request, Response, and Session) to handle web requests. Note that C# is case-sensitive, making 'Web.UI' the correct casing.