ASP.NET jQuery Cookbook
Another book of which I was the technical reviewer was published: ASP.NET jQuery Cookbook. Access to the link to find out more about the book.
Another book of which I was the technical reviewer was published: ASP.NET jQuery Cookbook. Access to the link to find out more about the book.
Inspired by the work of Emad Ibrahim, I set out to develop a validation library for ASP.NET MVC. Besides trying to meet the same objectives as Emad Ibrahim’s library, i.e. model-based validation, integration with the jQuery validation plugin, and little or no duplication between client-side and server-side validation, these are the differences of my library:
Password field of the User entity).How does it work?
The idea of the library is that one should be able to decorate an entity object with some validation attributes and then have that entity validated at both the server-side and client-side with the minimum amount of code. Let’s say you have a User entity in your application, you can annotate it as follows:
public class User
{
[NotNullOrEmptyValidator(MessageTemplate = "Name is required")]
[StringLengthValidator(6, 20, MessageTemplate = "Name must be between {3} and {5}")]
public string Name { get; set; }
[NotNullOrEmptyValidator(MessageTemplate = "Email is required")]
[EmailValidator(MessageTemplate = "Invalid email address")]
public string Email { get; set; }
[NotNullOrEmptyValidator(MessageTemplate = "Location is required")]
public string Location { get; set; }
[NotNullOrEmptyValidator(MessageTemplate = "Password is required")]
[StringLengthValidator(6, 50, MessageTemplate = "Password must be between {3} and {5}")]
public string Password { get; set; }
}
Now, whenever this entity is populated with form posted values, you can perform server-side validation by invoking the Validate() extension method on the entity. Let’s do that in the action method.
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult EditUser([Bind(Prefix="")]User user)
{
try
{
user.Validate<User>();
}
catch (EntityValidationException ex)
{
ViewData.ModelState.PopulateWithErrors(ex);
}
return View();
}
The above code will perform validation on the entity given its validation attributes. If there’s any validation error, an EntityValidationException object is thrown and you can use it the populate the model state with error messages. The method PopulateWithErrors is another extension method provided by the library.
If you want to limit the properties to be validated (e.g. in a password change scenario), you can pass an array of property names into the Validate() method.
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult ChangePassword([Bind(Prefix="")]User user)
{
try
{
// Only validate the password property
user.Validate<User>(new[] {"password"});
}
catch (EntityValidationException ex)
{
ViewData.ModelState.PopulateWithErrors(ex);
}
return View();
}
I could have added a custom model binder to the library so that validation happens at the model binding phase but I think that’s not a flexible approach since in many cases we would want to perform validation in the service layer instead so that the validation takes place consistently for any client of the service.
Let’s see the result of the server-side validation:

Okay, let’s move to client-side validation. The trick behind the client-side validation is that the view will invokes the HtmlHelper’s ClientSideValidation() extension method which will retrieve all validation attributes of the specified entity type (e.g. User) and generate equivalent client-side validation script for them.
Currently, while you can apply as many validation attributes to an entity as you like and the server-side validation will work perfectly fine, only a couple of validation rules are supported by the client-side code generator, namely required field validation, string length validation, and email validation. These3 rules are sufficient for my current need and I will add more on a needed basis (or you can download the code and implement more rules yourself.)
There are a couple of overloads of the ClientSideValidation() method:
// Generates validation script for the User type Html.ClientSideValidation<User>(); // Generates validation script for the User type, including the code to initialize form validation Html.ClientSideValidation<User>(string formName); // Generates validation script for the User type and adds necessary code to avoid JavaScript error if one or // more properties in the User type do not match with any DOM element. Html.ClientSideValidation<User>(bool ignoreMissingElements); // See the above 2 overloads Html.ClientSideValidation<User>(string formName, bool ignoreMissingElements);
For example, the generated code for an invocation of the second overload will result in the following code:
<script language="JavaScript"><!--
$().ready(function() {
$("#edit-user-form").validate();
$("#name").rules("add", {
minlength : "6", maxlength : "20",
required : true,
messages: {
minlength : "Name must be between 6 and 20", maxlength : "Name must be between 6 and 20",
required : "Name is required"
}
});
$("#email").rules("add", {
required : true,
email : true,
messages: {
required : "Email is required",
email : "Invalid email address"
}
});
$("#location").rules("add", {
required : true,
messages: {
required : "Location is required"
}
});
$("#password").rules("add", {
minlength : "6", maxlength : "50",
required : true,
messages: {
minlength : "Password must be between 6 and 50", maxlength : "Password must be between 6 and 50",
required : "Password is required"
}
});
});
--></script>
That’s it, you don’t need to write a single line of JavaScript to have this nice client-side validation:

How can I download and use it?
The library is hosted at CodePlex. I have built it with ASP.NET MVC Beta, Enterprise Library 4.1, jQuery 1.2, and jQuery validation plug-in 1.5. You might need to make a couple of changes if you want it to work with a different version of those libraries. Any bug, please post on the project page instead of posting here. Thanks & hope you’ll find the library useful.
By PDGACO payday loan