2014-10-11 06:57:02 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using System.Web.Optimization;
|
|
|
|
|
using System.Web.Routing;
|
|
|
|
|
|
|
|
|
|
namespace BuildFeed
|
|
|
|
|
{
|
|
|
|
|
public class MvcApplication : System.Web.HttpApplication
|
|
|
|
|
{
|
|
|
|
|
protected void Application_Start()
|
|
|
|
|
{
|
|
|
|
|
AreaRegistration.RegisterAllAreas();
|
|
|
|
|
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
|
|
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|
|
|
|
BundleConfig.RegisterBundles(BundleTable.Bundles);
|
|
|
|
|
|
2015-01-30 01:31:51 +08:00
|
|
|
|
DateTimeModelBinder db = new DateTimeModelBinder();
|
2014-10-11 06:57:02 +08:00
|
|
|
|
|
2015-01-30 01:31:51 +08:00
|
|
|
|
ModelBinders.Binders.Add(typeof(DateTime), db);
|
|
|
|
|
ModelBinders.Binders.Add(typeof(DateTime?), db);
|
2014-10-11 06:57:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|