Bradley Braithwaite
1 import {
2 Learning,
3 JavaScript,
4 AngularJS
5 } from 'Brad on Code.com'
6 |
Check out my online course: AngularJS Unit Testing in-depth with ngMock.

jQuery Validation Groups for ASP.Net Webforms

on
on jQuery Validation, ASP.Net WebForms

I recently published a plug-in via Nuget that makes using jQuery Validation with ASP.Net WebForms a little more elegant. There is a limitation when using jQuery Validation with WebForms where if you have two logical ‘form’ groups in an ASP.Net WebForm when you click ‘submit’ in one section the entire page will be validated.

Consider the below example. There are two sections, one to login and the other to sign up. I want the validation to only fire for the “First Name” field when the “Sign Up” button is clicked.

If I click on the “sign up” button, this happens:

Screen Shot 2012 08 25 at 16 25 38 Clicking on the “sign up” button also triggers the validation for the login section.

###Why not use the standard ASP.Net Validation Controls?

The standard ASP.Net validation controls e.g. required field validator get around this problem with the concept of validation groups. The downside to using the standard ASP.Net controls is that you have to add the obtrusive markup into your page e.g:

 <asp:Label ID="uiFirstName" runat="server" AssociatedControlID="uxFirstName" Text="First name:"></asp:Label>
 <asp:TextBox ID="uxFirstName" runat="server" CssClass="required"></asp:TextBox>
 <asp:RequiredFieldValidator runat="server" ID="valFirstName" ControlToValidate="uxFirstName"></asp:RequiredFieldValidator>

Using jQuery Validation allows you to attach validation bindings either via JavaScript or using CSS class names, leaving a cleaner separation of concerns in the HTML markup. This is one of the main reasons as to why this plugin has become so popular.

Dave Ward wrote a great blog post addressing this problem where he offers a solution that will give us “validation groups” using jQuery Validation. This solution is great, but it leaves a side effect of having to write more JavaScript where there are multiple form sections on a page. I wanted the best of both worlds and something that could be used right out of the box for WebForm developers - which is what this plug-in aims to achieve.

###How to use

If you are unfamiliar with jQuery Validation, please take a look at the documentation. This plug-in sits on top of jQuery Validation so all the features work as standard.

To set up jQuery Validation you have to attach the validate event to the form, as below:

$(function() {
    $("#aspForm").validate();
});

To make use of the jQuery Validation with ASP.Net WebForms plugin simply download the package via Nuget or get the JavaScript source file from Github (links are below) and change the event binding to the below:

$(function() {
    $("#aspForm").validateWebForm();
});

If we have multiple validation groups on a form, we can set this up using CSS names. Simply wrap an element around your validation section and give it a class name of “form”. Next, on the submit action that should trigger the validation event just add the CSS class name “submit”. That’s it! Here is a basic example:

<fieldset class="form">
  <!-- other controls here... -->
  <asp:Button ID="uxRegister" runat="server" Text="Sign Up" CssClass="submit" />
</fieldset>

Here is a working example from the screen shot that uses the plug-in.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
 <title>Multiple Form Validation</title>
 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
 <script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script>
 <script type="text/javascript" src="jquery.validation.net.webforms.min.js"></script>
 <script type="text/javascript">
 $(function() {
 $("#aspForm").validateWebForm();
 });
 </script>
 <style type="text/css">
 .error {
 color: red;
 }
 </style>
</head>
<body>
 <form id="aspForm" runat="server">
 <fieldset class="form" id="signup">
 <div class="something">
 <ul></ul>
 </div>
 <legend>Sign Up</legend>
 <p>
 <asp:Label ID="uiFirstName" runat="server" AssociatedControlID="uxFirstName" Text="First name:"></asp:Label>
 <asp:TextBox ID="uxFirstName" runat="server" CssClass="required"></asp:TextBox>
 </p>
 <p>
 <asp:Button ID="uxRegister" runat="server" Text="Sign Up" CssClass="submit signup" />
 <asp:Button ID="uxCancelRegister" runat="server" Text="Cancel" />
 </p>
 </fieldset>
 <fieldset class="form" id="login">
 <legend>Login</legend>
 <p>
 <asp:Label ID="uiUserName" runat="server" AssociatedControlID="uxUserName" Text="User name:"></asp:Label>
 <asp:TextBox ID="uxUserName" runat="server" CssClass="required email"></asp:TextBox>
 </p>
 <p>
 <asp:Button ID="uxLogin" runat="server" Text="Login" CssClass="submit login" />
 <asp:Button ID="uxCancelSignUp" runat="server" Text="Cancel" />
 </p>
 </fieldset>
 </form>
</body>
</html>

###Download from Nuget

PM&gt; Install-Package jQuery.Validation.WebForms </code>

See the Nuget project page.

###Source code on Github

You can download the full source here.

SHARE
Don't miss out on the free technical content:

Subscribe to Updates

CONNECT WITH BRADLEY

Bradley Braithwaite Software Blog Bradley Braithwaite is a software engineer who works for search engine start-ups. He is a published author at pluralsight.com. He writes about software development practices, JavaScript, AngularJS and Node.js via his website . Find out more about Brad. Find him via:
You might also like:
mean stack tutorial AngularJS Testing - Unit Testing Tutorials