20 lines
465 B
C#
20 lines
465 B
C#
using System;
|
|
using System.Web;
|
|
using System.Web.Optimization;
|
|
using System.Web.Routing;
|
|
|
|
namespace MP_ADM
|
|
{
|
|
public class Global : HttpApplication
|
|
{
|
|
void Application_Start(object sender, EventArgs e)
|
|
{
|
|
// Codice eseguito all'avvio dell'applicazione
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|
BundleConfig.RegisterBundles(BundleTable.Bundles);
|
|
|
|
// avvio il metodo init x applicazione...
|
|
MP_Startup.Init();
|
|
}
|
|
}
|
|
} |