localize data annotations default messages ([Required] [StringLength] etc.)

前端 未结 2 1057
旧时难觅i
旧时难觅i 2020-12-23 15:12

if I decorate the properties of my ViewModels with attributes like this:

public class Vm
{

[Required]
[StringLength(35)]
public string Name {get;set;}

}
         


        
2条回答
  •  心在旅途
    2020-12-23 15:20

    You could use the ErrorMessageResourceName property:

    [Required(ErrorMessageResourceName = "SomeResource")]
    [StringLength(30, ErrorMessageResourceName = "SomeOtherResource")]
    public string Name { get; set; }
    

    You may checkout this blog post for an example.


    UPDATE:

    In Application_Start:

    DefaultModelBinder.ResourceClassKey = "Messages";
    

    And in the Messages.resx file you need to add the custom error messages. Use Reflector to look at the System.Web.Mvc and System.ComponentModel.DataAnnotations assemblies in order to see the key names to use.

提交回复
热议问题