我创建了这个模型类:
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]
之类的验证时,任何地方都会显示该错误消息。我怎么能这样做?
答案 0 :(得分:1)
在数据注释中使用关键字错误消息
public class test5
{
[Required(ErrorMessage = "CUSTOM ERROR MESSAGE")]
public string title { get; set; }
public int content { get; set; }
}