ASP.NET MVC 2 RC 表单级别的 ModelState.AddModelError

发布于 2024-08-20 19:52:05 字数 226 浏览 4 评论 0原文

在 ASP.NET MVC 的早期版本中,您可以使用 ModelState.AddModelError("**_FORM**", "error") 在表单级别而不是属性上产生错误 -等级。这似乎不再适用于 ASP.NET MVC 2 的新 RC。

还有其他方法吗?我在我的视图文件中使用 <%= Html.ValidationSummary() %> ...

In the previous versions on ASP.NET MVC, you could use ModelState.AddModelError("**_FORM**", "error") to make an error on the form-level instead of a property-level. This seems not to work anymore with the new RC of ASP.NET MVC 2.

Is there another way how to do it? I use <%= Html.ValidationSummary() %> at my View-file...

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

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

发布评论

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

评论(2

很酷又爱笑 2024-08-27 19:52:05

我个人使用 AddModelError("" - 我不知道 _FORM 从哪里来? - 并且 ValidationSummary() 不是黑魔法 - 我使用我自己的助手代替例如,将特定的(特定于用户的)异常消息包含到输出中 - 一个简单的 ModelState 上的 foreach 循环 - 因此您可以考虑编写自己的异常消息,您可以自由地显示表单级别。 、财产级别或任何您喜欢的级别。

I personally use AddModelError("" - I don't know where does _FORM come from? - and ValidationSummary() is no black magic - I use my own helper instead that, for example, includes specific (user-specific) exceptions messages into output. The helper is very easy to write - a simple foreach loop over ModelState - so you may consider writing your own one. There you're free to show form-level, property-level, or whatever you like.

唐婉 2024-08-27 19:52:05

错误位于 modelstate 内部,并通过以下参数发送到validationsummary 的帮助程序类:

this.ViewData.ModelState.Keys

this.ViewData.ModelState.Values

the error are inside modelstate and is send to the helper class of validationsummary by following argument:

this.ViewData.ModelState.Keys

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