List的验证财产
我在 ASP.NET MVC 2 中使用数据注释和服务器/客户端验证内容。如果一个类具有以下属性,则一切正常:
[Required(ErrorMessage = "whatever")]
String blah;
但我不知道如何做到这一点:
[Range(13134, 42352345, ErrorMessage = "outside of range")]
List<int> blah;
我希望 int 在该范围内。
I am using datannotations and the server/client side validation stuff in ASP.NET MVC 2. Everything works fine if a class has properties such as:
[Required(ErrorMessage = "whatever")]
String blah;
but I have no idea how to make this:
[Range(13134, 42352345, ErrorMessage = "outside of range")]
List<int> blah;
where I want the int to be in that range.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你必须编写一个自定义验证器才能做到这一点。 本文 Scott Gu 对于解释编写自定义验证器很有用
这篇 msdn 文章可能更合适,因为它专门讨论了自定义范围验证
I think you will have to write a custom validator to do this. This article by Scott Gu is useful for explaining writing custom validators
This msdn article may be more appropriate as it specifically discusses custom range validation