ASP.NET MVC 3 列表框验证
我目前在 ASP.NET MVC 3 ListBox 验证中遇到一个奇怪的问题,如标题中所述。基本上,我的视图模型中有一个列表,我将其绑定到启用了多重选择的列表框。
该列表被赋予一个属性[必需]。当我提交选择了单个值的表单时,它顺利通过了验证。但是,如果超过一个,验证就会失败。
有什么想法吗?
I'm currently experiencing a weird issue with ASP.NET MVC 3 ListBox validation, as stated in the title. Basically, I have a List in my viewmodel, which I bind to a ListBox with multiple selection enabled.
The List is given an attribute [Required]. When I submit the form with single value selected, it passes validation with no hiccups. However, with more than one, validation would fail.
Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
奇怪的是,我无法重现你的问题。
模型:
控制器:
视图:
如果您未选择列表中的任何项目,则会按预期显示验证错误消息。如果您选择一项或多项,验证将通过并且不会显示错误消息。
Weird, I am unable to reproduce your issue.
Model:
Controller:
View:
If you don't select any item in the list the validation error message is shown as expected. If you select one or more items the validation passes and no error message is displayed.