44 lines
953 B
C#
44 lines
953 B
C#
using System;
|
|
using System.Web.Optimization;
|
|
using System.Web.Routing;
|
|
|
|
namespace MoonProTablet
|
|
{
|
|
public class Global : System.Web.HttpApplication
|
|
{
|
|
|
|
protected void Application_Start(object sender, EventArgs e)
|
|
{
|
|
// Codice eseguito all'avvio dell'applicazione
|
|
BundleConfig.RegisterBundles(BundleTable.Bundles);
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|
|
|
// avvio il metodo init x applicazione...
|
|
MP_Startup.Init();
|
|
}
|
|
|
|
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)
|
|
{
|
|
}
|
|
}
|
|
} |