Click here to Skip to main content
6,629,377 members and growing! (23,879 online)
Email Password   helpLost your password?
Web Development » Validation » General     Intermediate License: The Microsoft Public License (Ms-PL)

Multiple Fields Validator - An ASP.NET Validation Control

By Adam Tibi

Discussing the MultipleFieldsValidator that validates a group of fields in which at least one is required, like phone number, mobile phone number, or email. It inherits the BaseValidator and uses some new cool ASP.NET 2.0 features.
C#, Javascript, HTML, Windows, .NET 2.0, ASP.NET, VS2005, Dev
Posted:20 Mar 2006
Updated:7 Apr 2006
Views:178,842
Bookmarked:115 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
80 votes for this article.
Popularity: 9.23 Rating: 4.85 out of 5

1
1 vote, 1.3%
2
2 votes, 2.6%
3
4 votes, 5.1%
4
71 votes, 91.0%
5

Sample Image

Introduction

In an ideal world, web users don't need to authenticate because they are trustworthy, no try-catch because there wouldn't be any bug or unexpected behavior, and you wouldn't be using web validators because users will be submitting valid entries. But since we are not living in that world, I hope we would some time, you might find this validator useful, so bear with me.

Developing with ASP.NET, I've encountered many cases when you only need one field to be filled out of many given fields. To validate in such cases, I used to have a custom validator, or a client-script, or some times did server-side validation only.

The problem with a custom validator, and all other ASP.NET validators, is that they are mainly designed to handle one or two fields. Also, you need to write custom server-side and client-side code, or maybe copy and paste code, every time you encounter validating multiple fields. To solve this, I have made this light multiple-controls validator, and got use of the new ASP.NET 2.0 features.

Background

Even with ASP.NET 2.0, a lot of valuable validation controls are missing, especially those for multiple-fields validation. Peter Blum has created a set of commercial controls called Professional Validation And More to fill this gap and he, when answering my forum post, gave me the idea of implementing my own validator.

I have also found a good article on CodeProject by Daniel Hacquebord on CustomValidator dependent on multiple controls that addresses a similar need, however, this validation control has the following advantages:

  1. Doesn't require writing any client or server-side code. Just drop it on the page and assign it the controls that you want to validate.
  2. HTML/XHTML compatible. It assigns additional attributes with JavaScript rather than adding them directly to the span tag. That is, it uses JavaScript document["MyMultipleFieldsValidator"].condition = "OR" rather than the HTML <span id="MyMultipleFieldsValidator" condition = "OR">.
  3. Uses a .js resource file to register the client-side code rather than writing the client-side code in every page that requires this control.
  4. Inherits directly from BaseValidator versus CusomValidator, thus, gaining a tiny extra performance.

There is another good article on CodeProject that gave me some inspiration, called RequiredIfValidator - Extending from the BaseValidator class about a validator that validates another field based on the selection of a drop down list.

Using the Code

BaseValidator, the base of this control, is mainly made to handle one control so I had to disable some properties that is meant to validate a single control. I had to shadow the ControlToValidate and SetFocusOnError properties and hide them from the designer and the Visual Studio editor.

false)>
[EditorBrowsable(EditorBrowsableState.Never)]
public new bool SetFocusOnError {
    get {
        return false;
    }
    set {
        throw new NotSupportedException("SetFocusOnError is not supported.");
    }
}

false)>
[EditorBrowsable(EditorBrowsableState.Never)]
public new string ControlToValidate {
    get {
        return string.Empty;
    }
    set {
        throw new NotSupportedException("ControlToValidate is not supported.");
    }
}

In the AddAttributesToRender, I am using the ASP.NET 2.0 RegisterExpandoAttribute method to add attributes, using JavaScript, to the <span> tag generated by the validator rather than adding them statically, hence, keeping it HTML/XHTML friendly.

if(this.RenderUplevel) {
    string clientID = this.ClientID;
    Page.ClientScript.RegisterExpandoAttribute(clientID, 
        "evaluationfunction", 
        "MultipleFieldsValidatorEvaluateIsValid");
    Page.ClientScript.RegisterExpandoAttribute(clientID, 
        "controlstovalidate", 
        this.GenerateClientSideControlsToValidate());
    Page.ClientScript.RegisterExpandoAttribute(clientID, 
        "condition",
        PropertyConverter.EnumToString(typeof(Conditions), Condition));
}

In the OnPreRender, I've used the new ASP.NET 2.0 method RegisterClientScriptResource to add my embedded .js file to the page. There is a good article by Gary Dryden on CodeProject called WebResource ASP.NET 2.0 explained that deals with this subject.

protected override void OnPreRender(EventArgs e) {
    base.OnPreRender(e);
    if (base.RenderUplevel) {
        this.Page.ClientScript.RegisterClientScriptResource(
            typeof(MultipleFieldsValidator),
            "AdamTibi.Web.UI.Validators.WebUIValidationExtended.js");
    }
}

Using the Validator

To use this validator from your Visual Studio IDE, you need to add the provided .dll to the toolbox. For more information on this, check the MSDN documentation.

After dropping the validator on a webform, all you need to do is to set the ControlsToValidate property, from the Properties window, to point to the controls that you want to validate. This summarizes the generated code; however, the demo attached with the article has more examples.

The Condition property, which is set to OR by default, sets the condition that you want to apply when validating multiple fields. So, OR ensures one of the fields is filled, XOR ensures one of the fields is filled but not all of them.

<%@ Page Language="C#" AutoEventWireup="true" %>
<%@ Register TagPrefix="atv" Namespace="AdamTibi.Web.UI.Validators" 
    Assembly="AdamTibi.Web.UI.Validators" %>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:TextBox ID="txtPhone" runat="server"></asp:TextBox>
<asp:TextBox ID="txtMobile" runat="server"></asp:TextBox>
<asp:TextBox ID="txtEmail" runat="server"></asp:TextBox>
<atv:MultipleFieldsValidator ID="mfv" runat="server" Condition="OR"
    ControlsToValidate="txtPhone,txtMobile,txtEmail">
    fill at least one field</atv:MultipleFieldsValidator>
</form>
</body>
</html>

Limitations

I've only tested the validator on IE 6 and Firefox 1.5; however, I am not using any weird JavaScript so it should work on other browsers as well. Please let me know if it worked for you.

I only need the validator to check TextBox fields so I didn't check it with other types of controls; however, in theory, it should work fine. Also, let me know if you are getting any problems.

Conclusion

I hope I made someone�s day. If you like this article then please remember to vote. If you have any suggestions, bugs, or enhancements then hit me with it!

History

  • 10 March 2006 - First version.
  • 04 April 2006 - Now works with Firefox.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)

About the Author

Adam Tibi


Member
New technology addict and C# fan. Started developing commercial applications in 2000 with VB6 and MFC then moved to VB.NET, landed on C# and ASP.NET and never looked back.
Currently focusing on enterprise architecture, design patterns, web development, web controls and web services. Lives in Guildford/Surrey, UK.
Looking to hire .NET Software Consultant in London or South East UK?
Adam Tibi Blog on ASP.NET, C# & SEO
Occupation: Web Developer
Location: United Kingdom United Kingdom

Other popular Validation articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 158 (Total in Forum: 158) (Refresh)FirstPrevNext
GeneralCHANGE TO ONPRERENDER METHOD FOR FRAMEWORK 3.5 PinmemberJacquiF21hrs 37mins ago 
QuestionInitialValue Pinmembergrenadier10:47 1 Sep '09  
AnswerRe: InitialValue PinmemberAdam Tibi12:47 1 Sep '09  
GeneralRe: InitialValue Pinmembergrenadier13:00 1 Sep '09  
GeneralAdded lost focus check Pinmemberjjhale8117:25 12 Jun '09  
GeneralRe: Added lost focus check PinmemberAdam Tibi6:00 15 Jun '09  
GeneralWell thought out PinmemberMatt Sollars5:42 29 May '09  
GeneralRe: Well thought out PinmemberAdam Tibi6:52 29 May '09  
GeneralMultiple Control Validation Pinmemberjdalnes12:12 27 Feb '09  
GeneralRe: Multiple Control Validation PinmemberAdam Tibi6:31 2 Mar '09  
GeneralControl properties lost on postback PinmemberMember 38901479:25 12 Dec '08  
GeneralAjax Pinmembercf200610:34 24 Nov '08  
GeneralRe: Ajax PinmemberMatt Sollars10:30 29 May '09  
GeneralThanks! PinmemberJane Williams5:06 6 Oct '08  
GeneralRe: Thanks! PinmemberAdam Tibi9:12 8 Oct '08  
GeneralRe: Thanks! PinmemberJane Williams5:31 30 Oct '08  
GeneralRe: Thanks! PinmemberAdam Tibi15:21 31 Oct '08  
GeneralRe: Thanks! PinmemberJane Williams1:57 4 Nov '08  
Question[Message Deleted] Pinmemberjay12345678905:21 24 Sep '08  
AnswerRe: help... PinmemberAdam Tibi9:12 24 Sep '08  
GeneralNice work and a huge help! PinmemberStevishere12:58 9 Sep '08  
GeneralRe: Nice work and a huge help! PinmemberAdam Tibi0:50 10 Sep '08  
GeneralThanks a lot Pinmemberblue_nerve21:03 26 Aug '08  
GeneralRe: Thanks a lot PinmemberAdam Tibi23:49 26 Aug '08  
QuestioncheckBox control not validating Pinmemberag.rinku7:26 29 Jul '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 7 Apr 2006
Editor: Smitha Vijayan
Copyright 2006 by Adam Tibi
Everything else Copyright © CodeProject, 1999-2009
Web19 | Advertise on the Code Project