自定义asp.net mvc验证错误消息

时间:2015-04-08 08:17:07

标签: asp.net-mvc validation model-view-controller

我创建了这个模型类:

 public class test5
{
    [Required] //when title field empty send from client this is show this messae" The title field is required."
    public string title { get; set; }
    public int content { get; set; }
}

我想编辑自定义消息的必需已归档错误消息,当我使用[Required]之类的验证时,任何地方都会显示该错误消息。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

在数据注释中使用关键字错误消息

public class test5
{
[Required(ErrorMessage = "CUSTOM ERROR MESSAGE")]
    public string title { get; set; }
    public int content { get; set; }
}