I'd like to create a custom validation attribute for MVC2 for an email address that doesn't inherit from RegularExpressionAttribute but that can be used in client validation. Can anyone point me in the right direction?

I tried something as simple as this:

[AttributeUsage( AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false )]
public class EmailAddressAttribute : RegularExpressionAttribute
{
    public EmailAddressAttribute( )
        : base( Validation.EmailAddressRegex ) { }
}

but it doesn't seem to work for the client. However, if I use RegularExpression(Validation.EmailAddressRegex)] it seems to work fine.

link|improve this question

77% accept rate
You do inherit from RegularExpressionAttribute in your example? – çağdaş Mar 5 '10 at 2:38
I've tried it both ways but can't seem to get it to work. – devlife Mar 5 '10 at 3:30
You need to register an adapter for the new attribute in order to enable client side validation. See my example below. – JCallico May 10 '11 at 18:11
feedback

5 Answers

up vote 9 down vote accepted

You need to register an adapter for the new attribute in order to enable client side validation.

Since the RegularExpressionAttribute already has an adapter, which is RegularExpressionAttributeAdapter, all you have to do is reuse it.

Use a static constructor to keep all the necessary code within the same class.

[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple  = false)]
public class EmailAddressAttribute : RegularExpressionAttribute
{
    private const string pattern = @"^\w+([-+.]*[\w-]+)*@(\w+([-.]?\w+)){1,}\.\w{2,4}$";

    static EmailAddressAttribute()
    {
        // necessary to enable client side validation
        DataAnnotationsModelValidatorProvider.RegisterAdapter(typeof(EmailAddressAttribute), typeof(RegularExpressionAttributeAdapter));
    }

    public EmailAddressAttribute() : base(pattern)
    {
    }
}

For more information checkout this post explaining the complete process. http://haacked.com/archive/2009/11/19/aspnetmvc2-custom-validation.aspx

link|improve this answer
feedback

I would suggest you checking Phil Haacks excellent post about validation.

link|improve this answer
The post contains all necessary info to create custom validator (works on both server side and client side), thanks. – wenqiang Mar 6 '10 at 2:32
As of MVC 3, the referenced Phil Haack post is out of date. Follow the link in Chris S's answer for an up to date example. – Scott Ferguson Oct 30 '11 at 20:59
@ScottFerguson, and you think this is a reason for a downvote? As you can I posted this answer on Mar 4 2010. Leaving a comment that the post is out of date would have been sufficient for modifying it. Or since SO is a community driven web site if you think that an answer is out of date you could modify it yourself. You imagine that I am not capable of constantly surveying all of my 12800 answers on StackOverflow for whether they are up to date. Also the question was tagged with asp.net-mvc, not asp.net-mvc-3, so the answer still stands true for this version. – Darin Dimitrov Oct 30 '11 at 21:02
Relax @Darin, I'm just trying to help out anyone who like me stumbled upon this answer in a post MVC3 world, and ended up going down the wrong path. Your answer was fine in the day it was posted, and your 244k rep won't be adversely affected. It's just in my opinion, this answer is now not as relevant as the Chris S answer, and I casted my votes accordingly. In addition, the downvote also cost me 1 rep, which as a percentage of my total rep probably cost me a lot more than the downvote cost you. It wasn't out of spite. Also, there was no need to modify this answer myself, the Chris S was ok. – Scott Ferguson Oct 31 '11 at 1:28
feedback

This MSDN page has a few examples on it now. The Phil Haacked post is out of date.

link|improve this answer
feedback

Look at the universal Dependent Property Validator in this article

link|improve this answer
feedback

Have you tried using Data Annotations?

This is my Annotations project using System.ComponentModel.DataAnnotations;

public class IsEmailAddressAttribute : ValidationAttribute
{
  public override bool IsValid(object value)
  {
    //do some checking on 'value' here
    return true;
  }
}

This is in my Models project

namespace Models
{
    public class ContactFormViewModel : ValidationAttributes
    {
        [Required(ErrorMessage = "Please provide a short message")]
        public string Message { get; set; }
    }
}

This is my controller

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult ContactUs(ContactFormViewModel formViewModel)
{
  if (ModelState.IsValid)
  {
    RedirectToAction("ContactSuccess");
  }

  return View(formViewModel);
}

You'll need to google DataAnnotations as you need to grab the project and compile it. I'd do it but I need to get outta here for a long w/end.

Hope this helps.

EDIT

Found this as a quick google.

link|improve this answer
1  
But does that work on client-side? As far as I understand, that's what he is asking. – çağdaş Mar 5 '10 at 6:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.