处理 ASP.NET MVC 母版页中的按钮 onclick 事件

发布于 2024-08-09 05:24:01 字数 425 浏览 5 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(1

浅黛梨妆こ 2024-08-16 05:24:01

使用会话或隐藏字段。这实际上在 Stack Overflow 上得到了回答,例如 如何创建支持后退按钮的 ASP.NET MVC 向导?

但是,如果您可以使用 JavaScript,我建议您查看:

http://home.aland。 net/sundman/

http://www.sagecraft -studios.com/jquery/wizard-form-demo.html

这是一个基础 - 例如,在第二个示例中,您可以执行类似的操作

show: function() { 
  prevPage.hide();
  if (curPage.children().length == 0)
    curPage.load("/form/wizard/ " + curPage.id);
}

,即隐藏上一页并显示下一页,通过加载其内容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

show: function() { 
  prevPage.hide();
  if (curPage.children().length == 0)
    curPage.load("/form/wizard/ " + curPage.id);
}

That is, hide the previous page and show the next page, loading its content via Ajax only if not loaded.

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