处理 ASP.NET MVC 母版页中的按钮 onclick 事件
我正在 ASP.NET (3.5) MVC 框架 (1.0)。 我的应用程序中有 1 个母版页和 4 个 MVC 视图。 我已将这四个视图放置在母版页的 contentplaceholder 中。 我在母版页中有一个上一个按钮、一个下一个按钮和一个提交按钮。
现在的问题是:
如何使用“上一个”和“下一个”按钮在 4 个视图之间导航。即如何处理MVC母版页中的按钮单击事件?
如何在导航时保留在每个视图中输入的值,直到我提交所有 4 个视图中的数据?
I am working with master page in ASP.NET (3.5) MVC Framework (1.0).
I am having one master page and 4 MVC Views in my application.
I have placed these four views in the contentplaceholder of the master page.
I have a Previous Button, a Next Button and the Submit Button in the master page.
Now the question is:
How to navigate between the 4 views using Previous and Next buttons. I.e. how to handle the button click event in MVC master page?
How to retain the values entered in each of the views while navigation, till I submit the data from all the 4 Views?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用会话或隐藏字段。这实际上在 Stack Overflow 上得到了回答,例如 如何创建支持后退按钮的 ASP.NET MVC 向导?。
但是,如果您可以使用 JavaScript,我建议您查看:
http://home.aland。 net/sundman/
或
http://www.sagecraft -studios.com/jquery/wizard-form-demo.html
这是一个基础 - 例如,在第二个示例中,您可以执行类似的操作
,即隐藏上一页并显示下一页,通过加载其内容Ajax 仅在未加载时使用。
Use Session or hidden fields. This actually was answered on Stack Overflow, for example How do I create an ASP.NET MVC wizard with back button support?.
However, if you can use JavaScript, I'd suggest taking a look at:
http://home.aland.net/sundman/
or
http://www.sagecraft-studios.com/jquery/wizard-form-demo.html
It's a basis - for example, in second example you can do something like
That is, hide the previous page and show the next page, loading its content via Ajax only if not loaded.