gpt4 book ai didi

asp.net-mvc - 如何在asp.net mvc中重定向到相同的路由(来自请求的来源)

转载 作者:行者123 更新时间:2023-12-04 15:37:28 27 4
gpt4 key购买 nike

我正在从局部 View 发布一个表单,该表单通过 Html.RenderAction 呈现我希望在表单发布后重定向到来自请求的相同路由。

public ActionResult Index()
{
return PartialView();
}

[HttpPost]
public ActionResult Index(FormModel input)
{
...
return //Redirect to the same route
}

有人知道怎么做吗?

最佳答案

您可以从 Request 对象中检索 UrlReferrer:

return Redirect(HttpContext.Request.UrlReferrer.OriginalString);

关于asp.net-mvc - 如何在asp.net mvc中重定向到相同的路由(来自请求的来源),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3822126/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com