mvc3 中依赖字段的客户端验证

发布于 2024-11-02 17:24:42 字数 239 浏览 3 评论 0原文

你好 我有一个 MVC3 应用程序并使用客户端验证,发现它非常有用。 我在使用时遇到两个问题。 - 一个是否有可能需要提交依赖项,因为它用于比较 例如:如果特定字段的状态值是“测试”,则其他状态完成字段的值必须不为空,否则可以为空。 - 我有一个下拉菜单,说状态。如果它的值为“其他”,那么需要使文本框可见,说“其他状态”。要知道我正在使用javasript使其可见。 我不想为此使用 javasript。可以在不使用 javascript 的情况下执行此操作吗?

Hi
I have an MVC3 appliocation and using client side validation and find it to be very usefull.
I am having 2 issues while using it.
-One is there any possiblity of Required filed dependency as it there for Compare
eg: If the value of a particular filed say status is="Test" then the value of other say status done field must be not blank otherwise it can be blank.
- I am having a dropdown say state .If its value is "Other" then need to make a textbox visible say "other state" .For know I am using javasript to make it visible.
I donot want to use javasript for that. Can this be performed without using javascript.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

糖粟与秋泊 2024-11-09 17:24:42

您需要编写自己的自定义比较属性或仅使用 JavaScript。没有内置任何东西可以为您做到这一点。另一种选择是在控制器方法中提供服务器端验证,您可以在其中检查这种情况,如果失败,请使用 ModelState.AddError 给出自定义验证错误。

You need to write your own custom compare attribute or simply use javascript. Nothing is built in that will do this for you. The other option is to provide server side validation in your controller method where you check this situation and if it fails use ModelState.AddError to give a custom validation error.

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