forked from quartznet/quartznet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Global.asax.cs
33 lines (27 loc) · 1.01 KB
/
Global.asax.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using Quartz.Web.Localization;
namespace Quartz.Web
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplication : HttpApplication
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
}
protected void Application_Start()
{
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new LocalizationWebFormViewEngine());
RegisterRoutes(RouteTable.Routes);
}
}
}