This post shows you how you can do client side, unobtrusive validation on your MVC form.

It assumes you have already set up your Model, View and Controller, but you just need to know how to get it to validate on the client side.

You need to make sure you are referencing the following scripts in your page:

 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
 <script src="/scripts/jquery.validate.min.js"></script>
<script src="/scripts/jquery.validate.unobtrusive.min.js"></script>
<script src="/scripts/jquery.unobtrusive-ajax.js"></script>

If you don't have any of the scripts above, you can install them via nuget

PM> Install-Package Microsoft.jQuery.Unobtrusive.Validation
PM> Install-Package Microsoft.jQuery.Unobtrusive.Ajax

You need to enable client validation and unobtrusive validation, which can be done for the whole site, by adding these settings to the web.config app settings:

 <add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />

or for just one page you can add this to the top of your view:

@{ 
Html.EnableClientValidation();
Html.EnableUnobtrusiveJavaScript();
}

That should be all you need.

Now when you enter content to the form, if it is empty or invalid, it should trigger the validation messages straight away.

Please feel free to comment or share this post. I hope it has been useful for you.

Paul

Paul Seal

Umbraco MVP and .NET Web Developer from Derby (UK) who specialises in building Content Management System (CMS) websites using MVC with Umbraco as a framework. Paul is passionate about web development and programming as a whole. Apart from when he's with his wife and son, if he's not writing code, he's thinking about it or listening to a podcast about it.

Proudly sponsored by

Moriyama

  • Moriyama build, support and deploy Umbraco, Azure and ASP.NET websites and applications.
AppVeyor

  • CI/CD service for Windows, Linux and macOS
  • Build, test, deploy your apps faster, on any platform.
elmah.io

  • elmah.io is the easy error logging and uptime monitoring service for .NET.
  • Take back control of your errors with support for all .NET web and logging frameworks.
uSync Complete

  • uSync.Complete gives you all the uSync packages, allowing you to completely control how your Umbraco settings, content and media is stored, transferred and managed across all your Umbraco Installations.
uSkinned

  • More than a theme for Umbraco CMS, take full control of your content and design with a feature-rich, award-nominated & content editor focused website platform.
UmbHost

  • Affordable, Geo-Redundant, Umbraco hosting which gives back to the community by sponsoring an Umbraco Open Source Developer with each hosting package sold.