手动添加文本到 html.ValidationSummary?
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在寻找:
MSDN - ModelStateDictionary.AddModelError 方法(字符串,字符串)
MSDN - 验证 MVC 应用程序中的模型数据
HTH,
查尔斯
Are you looking for:
MSDN - ModelStateDictionary.AddModelError Method (String, String)
MSDN - Validating Model Data in an MVC Application
HTHs,
Charles