In an ASP.NET MVC 3 project, I'm using ninject for dependency injection.
I created a contact form and wanted the clientside validation to be enabled. But unfortunately, validation never got triggered. I spent more than 5 hours to find out, that ninject is the reason why clientside validation did not work. After commenting out the ninject related stuff, clientside validation works like a charm.
Actually, I have no idea why ninject should have an effect on that.
Is anyone having the same issue or did I miss something?
This is how I set up DI.
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
SetupDependencyInjection();
}
public void SetupDependencyInjection()
{
NinjectModule production = new ProductionModule();
IKernel kernel = new StandardKernel(production);
NinjectDependencyResolver locator = new NinjectDependencyResolver(kernel);
DependencyResolver.SetResolver(locator);
}
public class ProductionModule : NinjectModule
{
public override void Load()
{
Bind<INewsRepository>().To<NewsRepository>();
Bind<INewsService>().To<NewsService>();
}
}
Commenting out "SetupDependencyInjection()" makes the validation work.
Thanks for every hint.
Martin