Multiple choice technology web technology

The Global.asax event triggered when a user requests something from the Application for the first time is,

  1. Application_Start

  2. Session_Start

  3. Application_BeginRequest

  4. Session_OnBegin

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

Session_Start fires when a new user session begins, which happens on the first request from a user. Application_Start runs once when the application starts (not per user), Application_BeginRequest fires on every request, and Session_OnBegin is not a valid event name - the correct syntax is Session_Start.