Aggiunta MyStartup

This commit is contained in:
Samuele E. Locatelli
2018-12-18 11:07:26 +01:00
parent 900be4fa05
commit c609dcea25
3 changed files with 67 additions and 40 deletions
+23
View File
@@ -0,0 +1,23 @@
using SteamWare;
using System;
namespace GMW.App_Start
{
public class MyStartup
{
public static void Init()
{
logger.lg.scriviLog("Esecuzione MyStartup.init()", tipoLog.STARTUP);
try
{
// inizializzo appConf prima di tutto il resto...
memLayer.ML.resetAppConf();
logger.lg.scriviLog("Completata esecuzione preliminare setup AppConf", tipoLog.STARTUP);
}
catch (Exception exc)
{
logger.lg.scriviLog(string.Format("Eccezione in fase di INIT preliminare applicazione{0}{1}", Environment.NewLine, exc), tipoLog.EXCEPTION);
}
}
}
}
+1
View File
@@ -769,6 +769,7 @@
<DependentUpon>animeMult.aspx</DependentUpon>
</Compile>
<Compile Include="App_Start\BundleConfig.cs" />
<Compile Include="App_Start\MyStartup.cs" />
<Compile Include="App_Start\RouteConfig.cs" />
<Compile Include="AssegnaNC.aspx.cs">
<DependentUpon>AssegnaNC.aspx</DependentUpon>
+43 -40
View File
@@ -1,49 +1,52 @@
using System;
using GMW.App_Start;
using System;
using System.Web.Optimization;
using System.Web.Routing;
namespace GMW
{
public class Global : System.Web.HttpApplication
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
BundleConfig.RegisterBundles(BundleTable.Bundles);
// aggiungo friendlyUrls...
RouteConfig.RegisterRoutes(RouteTable.Routes);
// avvio il metodo init x applicazione...
MyStartup.Init();
}
protected void Session_Start(object sender, EventArgs e)
{
protected void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
BundleConfig.RegisterBundles(BundleTable.Bundles);
// aggiungo friendlyUrls...
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
protected void Session_Start(object sender, EventArgs e)
{
}
protected void Application_BeginRequest(object sender, EventArgs e)
{
}
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
}
protected void Application_Error(object sender, EventArgs e)
{
}
protected void Session_End(object sender, EventArgs e)
{
}
protected void Application_End(object sender, EventArgs e)
{
}
}
protected void Application_BeginRequest(object sender, EventArgs e)
{
}
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
}
protected void Application_Error(object sender, EventArgs e)
{
}
protected void Session_End(object sender, EventArgs e)
{
}
protected void Application_End(object sender, EventArgs e)
{
}
}
}