Thank you for the information!
Also, if you don't want to set these parameters globally (in ~/web.config), you can try and set them at the application level in the individual views (.cshtml) you need:
Also, if you don't want to set these parameters globally (in ~/web.config), you can try and set them at the application level in the individual views (.cshtml) you need:
@{
HtmlHelper.ClientValidationEnabled = true;
HtmlHelper.UnobtrusiveJavaScriptEnabled = true;
// ...
}
Source: http://stackoverflow.com/questions/20033751/clientvalidationenabled-and-unobtrusivejavascriptenabled-in-mvc-4