如何从模型状态获取错误消息
我正在使用
modelstate.Adderror("test","test message")
以及如何在控制器本身中获取此 modelstate 值。
就像我需要在控制器中获取“test”的错误消息一样。
I'm using
modelstate.Adderror("test","test message")
And how can i get this modelstate value in controller itself.
Like I need to get the error message of "test" in the controller.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
他在控制器中要求,我无法验证这一点,但我认为这只是类似:
上述之一。
He asks for in the controller, I cannot verify this but I think this is simply something like:
One of those above.
尝试
<%=Html.ValidationMessage("Test") %>
。Try
<%=Html.ValidationMessage("Test") %>
.