In my ASP.Net application, I can\'t get the events in Global.asax to fire on my machine. For instance, Session_Start will not fire.
The same Global.asax works fine
Application level events only need proper naming to work. Is your codebehind class being designated in your Global.asax file?
<%@ Application Inherits="YourNamespace.YourApplicationClass" Language="C#" %>