当存在绑定错误时,ASP.NET MVC 3 将发布的表单数据保留在表单中
当用户发布表单进行注册时,如果 ModelState 无效,我希望将输入表单值放回到适当的表单字段中,这样他们就不必再次填写整个表单。我可以将对象传回视图,然后在每个表单输入上设置值字段。这是唯一的方法吗?
谢谢
When a user posts a form to register, if ModelState is not valid, I would like to have the input form values placed back into the appropriate form fields so they do not have to fill out the entire form again. I could pass back the object to the view and then set the value field on each form input. Is this the only way to do it.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,HTML 帮助程序会表现出这种行为。你是如何编码的?例如,Html.TextBoxFor 就是这样做的。当您处于后期操作中时,帮助程序将使用发布的值并渲染视图而不进行重定向。
The HTML helpers by default exhibit this behavior. How are you coding this? Html.TextBoxFor does this for example. The helpers use the posted values when you are in a post action and render a view without redirecting.