ASP.net MVC - 视图上的多个表单,每个表单调用不同的操作,但需要再次显示相同的视图

发布于 2024-09-28 18:37:29 字数 114 浏览 3 评论 0原文

我的视图中有 3 个表格。每一个都回发到不同的操作。当操作完成时,我调用最初将用户引导至页面的原始操作,但 MVC 正在寻找回发操作的视图。如何让 MVC 发布到当前视图的不同名称的操作,同时仍然重新加载同一页面?

I have 3 forms on my View. Each of these all post back to a different action. When the action is complete, I call my original Action that led the user to the page originally, but MVC is looking for a view of the postback Action. How can I get MVC to post to an action of a different name of the current view, while still having it reload the same page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

野稚 2024-10-05 18:37:29

完成邮包操作后返回此信息:

return RedirectToAction("OriginalAction");

Return this when you are done with your post pack Action:

return RedirectToAction("OriginalAction");
口干舌燥 2024-10-05 18:37:29

我将如何解决这个问题:

在您看来,对于每个表单:

<% using(Html.BeginForm<ControllerController>(c => c.Action1(param))
{
    // Form Stuff
} %>

在您的操作中:

[HttpPost]
public ActionResult Action1(type param)
{
    // Do your work;
    return this.RedirectToAction(c => c.OrigionalAction(param));
}

强类型 Html.BeginForm 来自 MVCFutures (Microsoft.Web.Mvc)
强类型 RedirectToAction 来自 MvcContrib。

How I would solve the problem:

In your view, for each form:

<% using(Html.BeginForm<ControllerController>(c => c.Action1(param))
{
    // Form Stuff
} %>

In your action:

[HttpPost]
public ActionResult Action1(type param)
{
    // Do your work;
    return this.RedirectToAction(c => c.OrigionalAction(param));
}

The strongly typed Html.BeginForm is from MVCFutures (Microsoft.Web.Mvc)
The strongly typed RedirectToAction is from MvcContrib.

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