I have an ASP.net MVC model with a date:

public class EditModel
{ 
    [Display(Name="DOB")]
    public DateTime? DateOfBirth { get; set; }
}

@Html.TextBoxFor(m => m.DateOfBirth)
@Html.ValidationMessageFor(m => m.DateOfBirth)

When the user enters an invalid date such as 9/31/2011, the error message comes back as this:

The value '9/31/2011' is not valid for DOB.

This is happening when it is trying to do the model binding and is not one of my validations. Is there a way to customize this error message? I would like it to be something like:

Please enter a valid date for the Date of Birth.

I am not requiring the user to enter the Date, but when they do enter an INVALID value then I want to customize the error.

link|improve this question

feedback

4 Answers

up vote 0 down vote accepted

Try this,

[DataType(DataType.Date, ErrorMessage = "Please enter a valid date.")]
public System.DateTime DateOfBirth { get; set; }

Hope this will help you.. :)

link|improve this answer
feedback

You can use data annotations for errors, or, in this case you can do this:

@Html.ValidationMessageFor(m => m.DateOfBirth , "Please enter a valid date for the Date of Birth.") 
link|improve this answer
This would change it for all errors. I have other validations that I don't want to override. Also, I am currently using this because I want to display a * next to the text box and use the validation summary to show the full error. – Dismissile Sep 28 '11 at 16:14
Then write a custom validator for it and put the message about the invalid date with that validator. – Jared Peless Sep 29 '11 at 0:06
feedback

In your model, add the [Required()] attribute with a value for the ErrorMessage property, like so:

public class MyModel
{
  [Required(ErrorMessage="Please enter a valid date of birth in 'mm/dd/yyyy' format.")]
  [DisplayName("DOB")]        
  public DateTime DateOfBirth { get; set; }
}
link|improve this answer
1  
It's not a required field. Updated my question to show that it is a Nullable DateTime. The problem is when its an INVALID date, not an OMITTED date. – Dismissile Sep 28 '11 at 16:21
feedback
public class myClass()
{

    [Display(Name="Date of Birth"), DataType(DataType.Date, ErrorMessage = "Please enter a valid date for the Date of Birth.")]
    public string dateOfBirth { get; set; }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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