In MVC 4, in order to enable client side validation in a view, should both keys ClientValidationEnabled
and UnobtrusiveJavaScriptEnabled
be true in web.config?
WEB.CONFIG
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
See Question&Answers more detail:os