如何自定义“值‘foo’”号码无效。”错误信息?
[MetadataType(typeof(PersonMetaData))]
public partial class Person {
public class PersonMetaData {
[Required(ErrorMessage="The number is required")]
public object Number {get;set;}
}
}
当数字字段为空并且输入无效时,会显示此错误消息,并显示“值‘foo’对于数字无效。”。如何自定义后一个错误消息?
[MetadataType(typeof(PersonMetaData))]
public partial class Person {
public class PersonMetaData {
[Required(ErrorMessage="The number is required")]
public object Number {get;set;}
}
}
This error message is shown when the number field is empty and when there's an invalid input it gives "The value 'foo' is not valid for Number.". How can I customize the latter error message?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET MVC - 值的自定义验证消息类型
ASP.NET MVC - Custom validation message for value types