当存在绑定错误时,ASP.NET MVC 3 将发布的表单数据保留在表单中

发布于 2024-12-02 00:22:58 字数 121 浏览 2 评论 0原文

当用户发布表单进行注册时,如果 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 技术交流群。

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

发布评论

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

评论(1

黄昏下泛黄的笔记 2024-12-09 00:22:58

默认情况下,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.

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