Example #1
0
 protected void Application_Start(object sender, EventArgs e)
 {
     BundleConfig.RegisterBundles(BundleTable.Bundles);
     AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(this.CurrentDomain_UnhandledException);
     AppRuntime.Start();
     AppEventLog.Warning("TIMMIS STARTED");
 }
Example #2
0
        protected void Application_End(object sender, EventArgs e)
        {
            AppRuntime.Stopping();
            string msg = "TIMMIS Stopped";

            AppRuntime.Stop();
            AppEventLog.Error(msg);
        }