List的验证财产

发布于 2024-11-09 23:57:51 字数 292 浏览 6 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不甘平庸 2024-11-16 23:57:51

我认为你必须编写一个自定义验证器才能做到这一点。 本文 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文