手动添加文本到 html.ValidationSummary?

发布于 2024-09-28 16:06:46 字数 183 浏览 4 评论 0原文

我对 mvc2 相当陌生,在阅读有关数据注释等的文章时,我遇到了一些代码,可以让我手动将一行文本添加到验证摘要中。

我已经搜索了过去的两三个小时,现在我认为我只是在寻找错误的东西。它不是我正在寻找的自定义验证器,而是我可以从控制器调用以添加错误消息的东西。

有人知道我在说什么吗?

编辑:稍微澄清一下标题

I am rather new to mvc2 and when following a writeup on data annotations and such, I came across a bit of code that let me manually add a line of text to the validation summary.

I've searched for the last 2 or 3 hours and I've come to the point where I think I'm just searching for the wrong thing. Its not custom validators I'm looking for, but something that I can call from the controller to add error messages.

Does anyone know what I'm talking about?

edit: clarified title a bit

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

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

发布评论

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

评论(1

作妖 2024-10-05 16:06:46

您是否在寻找:

ModelState.AddModelError("*", "There was an error processing your request")

MSDN - ModelStateDictionary.AddModelError 方法(字符串,字符串)
MSDN - 验证 MVC 应用程序中的模型数据

HTH,
查尔斯

Are you looking for:

ModelState.AddModelError("*", "There was an error processing your request")

MSDN - ModelStateDictionary.AddModelError Method (String, String)
MSDN - Validating Model Data in an MVC Application

HTHs,
Charles

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