請幫我索引方法,在我的控制,我有2種操作方法與所謂「索引」同名,但使用不同的參數..重定向到沒有參數
public ActionResult Index()
{...}
[HttpPost]
public ActionResult Index(PickingMobile mi, string hdnSelectOperation, string btnMPSearch, string btnSearchMP)
{...}
其他動作我
現在要重定向到Index操作不具有參數
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
}
但是,當我把斷點和調試順序,第一個索引方法沒有擊中。請幫助我,如何重定向到第一個索引操作。
作爲您的索引方法之一是HttpPost類型,所以當你調用返回RedirectToAction(「指數」,「ControllerName」)。這將您重定向到HTTPGET方法 – 111
但沒有擊中第一個索引方法,同時debufgging –