I'm in the process of adding ASP.NET MVC code to a preexisting ASP.NET Webforms project. The various tutorials suggest adding routing to a method called from Application_Start() in Global.asax. My Global.asax already has an Application_OnStart(Object,EventArgs) method with some setup code.
If I try to have both Start and OnStart, the OnStart doesn't get called (and the setup fails, causing errors). It looks like I have to choose one or the other.
My question is: which one should I be using? What is the difference between them? Are they called at different times?
(Note: at the time of this writing, the top three Google hits are useless and/or misleading. I'm hoping Stack Overflow can fix that.)
Application_OnStart
:All references I've been able to find refer to .asp pages
Application_Start
This page refers to .aspx pages. So as you are using MVC and mention global.asax this is the one you should be using.
According to Microsoft docs on the ASP.Net app life cycle you should be using the Application_start method inside the global.asax file:
Application_Start: Called when the first resource (such as a page) in an ASP.NET application is requested. The Application_Start method is called only one time during the life cycle of an application. You can use this method to perform startup tasks such as loading data into the cache and initializing static values.
Application_OnStart: The Application_OnStart event occurs before the first new session is created (when the Application object is first referenced). This goes in Global.asa, not global.asax.
In classic (legacy) ASP, there are a handful of special function names that, if defined in your global.asa file, will be run at specified points during the application lifecycle. These are defined as:
These are basically hard-wired into the classic ASP runtime - you can't change them, and you can't attach any other methods to these events.
In ASP.NET, there's a thing called
AutoEventWireup
that uses reflection to find methods conforming to particular naming conventions, and runs those methods in response to matching events raised by the ASP.NET runtime. The most common example is thePage_Load
method, which is automatically invoked in response to the Page class firing the Load event during the page lifecycle.The same technique is used to attach handlers to application-level lifecycle events. It will look for methods named either ModuleName_EventName or ModuleName_OnEventName, taking either no parameters
()
or(object sender, EventArgs e)
Here's the fun part - if you define more than one matching method, only the one that appears latest in the file will execute. (The last method wins, basically)
So if your global.asax.cs looks like this:
you'll see message D in your debug output; if you comment out the last method in that block, you'll see message C instead.
So - use whichever naming convention you like, but if you define more than one, only the one that appears last in your source file will be executed. I would personally stick with
Application_Start(object sender, EventArgs e)
since that's the signature generated by the Visual Studio project templates and most .NET design/coding tools.