仅当 modelstate 有错误时才显示 div
我有一个 div,其中包含通用样式和错误消息(如果用户输入错误的用户名/密码组合)。
我只想在用户输入错误信息时显示此 div。我的视图上有什么我可以做的,比如:
@if(ModelState.HasErrors)
{
<div>This login failed</div>
}
I have a div which contains a generic styling and error message if a user enters the wrong username/password combo.
I only want to display this div if the user has entered the wrong information. Is there something on my View I could do, something like:
@if(ModelState.HasErrors)
{
<div>This login failed</div>
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
旁注,您不能使用内置的验证助手吗?
控制器:
视图:
Side note, can't you use the built-in Validation helpers?
Controller:
View: