请帮助我,在我的控制器中,我有 2 个名称相同但参数不同的操作方法。
public ActionResult Index()
{...}
[HttpPost]
public ActionResult Index(PickingMobile mi, string hdnSelectOperation, string btnMPSearch, string btnSearchMP)
{...}
现在从其他动作我想重定向到没有参数的索引动作
public ActionResult ConfirmBatchPicking(PickingMobile DirectPicking)
{
...
return RedirectToAction("Index", "ManualPickingSearch");// from here I need to redirect to first Index Method which does not have any parameters
}
但是当我保持断点并调试序列时,第一个 Index 方法没有被命中。请帮助我,如何重定向到第一个索引操作。