30 lines
698 B
C#
30 lines
698 B
C#
using System;
|
|
using System.Web;
|
|
using System.Web.Optimization;
|
|
using System.Web.Routing;
|
|
|
|
namespace CMS_SC
|
|
{
|
|
public class Global : HttpApplication
|
|
{
|
|
void Application_Start(object sender, EventArgs e)
|
|
{
|
|
// Code that runs on application startup
|
|
BundleConfig.RegisterBundles(BundleTable.Bundles);
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|
}
|
|
|
|
void Application_End(object sender, EventArgs e)
|
|
{
|
|
// Code that runs on application shutdown
|
|
|
|
}
|
|
|
|
void Application_Error(object sender, EventArgs e)
|
|
{
|
|
// Code that runs when an unhandled error occurs
|
|
|
|
}
|
|
}
|
|
}
|