Multiple choice technology web technology

Once ASP.NET automatically parses and compiles the global.asax file into a dynamic .NET Framework class, which base class is extended?

  1. ASPApplication

  2. HttpsApplication

  3. ASPNETApplication

  4. NETApplication

  5. HttpApplication

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

When ASP.NET parses and compiles global.asax, it creates a dynamic class that inherits from HttpApplication (note: not ASPApplication, HttpsApplication, ASPNETApplication, or NETApplication). This base class provides application-level events and functionality.