vote up 5 vote down star
1

When I use UpdateModel or TryUpdateModel, the MVC framework is smart enough to know if you are trying to pass in a null into a value type (e.g. the user forgets to fill out the required Birth Day field) .

Unfortunately, I don't know how to override the default message, "A value is required." in the summary into something more meaningful ("Please enter in your Birth Day").

There has to be a way of doing this (without writing too much work-around code), but I can't find it. Any help?

EDIT

Also, I guess this would also be an issue for invalid conversions, e.g. BirthDay = "Hello".

flag

5 Answers

vote up 4 vote down

I've been using the awesome xVal validation framework. It lets me do all my validation in the model (Even LINQ-SQL :)). It also emits the javascript required for client side validation.

EDIT: Sorry left out the link for how to get it working for LINQ-SQL

The basic workflow goes something like this.

public partial class YourClass
{
    [Required(ErrorMessage = "Property is required.")]
    [StringLength(200)]
    public string SomeProperty{ get; set; }
}


try
{
    // Validate the instance of your object
    var obj = new YourClass() { SomeProperty = "" }
    var errors = DataAnnotationsValidationRunner.GetErrors(obj);
    // Do some more stuff e.g. Insert into database
}
catch (RulesException ex)
{
    // e.g. control name 'Prefix.Title'
    ex.AddModelStateErrors(ModelState, "Prefix");   
    ModelState.SetModelValue("Prefix.Title", new ValueProviderResult(ValueProvider["Prefix.Title"].AttemptedValue, collection["Prefix.Title"], System.Globalization.CultureInfo.CurrentCulture));

}
link|flag
vote up 2 vote down

Look up ModelState.AddError.

link|flag
I know about ModelState.AddModelError(), but UpdateModel() automatically adds values into the error collection. Unless I am misunderstanding your answer? – Giovanni Galbo Mar 14 at 17:15
Well when you validate, add something to the ModelState. Here is a great tutorial. blog.maartenballiauw.be/post/2008/… – Daniel A. White Mar 14 at 17:27
I was kind of hoping not to have to bind everything myself, but maybe its the only way if I want my own messages? – Giovanni Galbo Mar 14 at 17:34
vote up 1 vote down

Get your models to implement the IErrorDataInfo interface. I don't have any example code with me here at work, but have a gander at this tutorial here:

http://www.asp.net/learn/mvc/tutorial-37-cs.aspx

HTHs, Charles

link|flag
IErrorDataInfo will not help when inserting a null into a value field, though the link you provided says that you'd need to create a model binder to customize the message, – Giovanni Galbo Mar 15 at 22:53
vote up 1 vote down

With the DefaultModelBinder it is possible to override the default required error message but unfortunately it would apply globally which IMHO renders it completely useless. But in case you decide to do it here's how:

  1. Add the App_GlobalResources folder to your ASP.NET site
  2. Add a resources file called Messages.resx
  3. Inside the resources file declare a new string resource with the key PropertyValueRequired and some value
  4. In Application_Start add the following line:

    DefaultModelBinder.ResourceClassKey = "Messages";
    

As you can see there's no link between the model property you are validating and the error message.

In conclusion it is better to write custom validation logic to handle this scenario. One way would be to use a nullable type (System.Nullable<TValueType>) and then:

if (model.MyProperty == null || 
    /** Haven't tested if this condition is necessary **/ 
    !model.MyProperty.HasValue)
{
    ModelState.AddModelError("MyProperty", "MyProperty is required");
}
link|flag
vote up 0 vote down

how about this? : [RegularExpression(@"^[a-zA-Z''-'\s]{1,40}$", ErrorMessage = "Characters are not allowed.")] That should allow you to tag properties with specific error messages for watever MVC validators you want to use...

link|flag

Your Answer

Get an OpenID
or

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