我正在尝试重定向到其他视图(ApartmentController), 所以我尝试了这里提到的所有方法:RedirectToAnOtherView 但是没有人与我合作, 任何帮助将是感激的 我的控制器是ApartmentController 我的视图是索引,因此我的网址就像“公寓/索引” 我已经尝试过:
return RedirectToAction("/Apartment/Index",new Apartment());
return View("Apartment");
return RedirectToActionPermanent("Apartment");
没有人和我一起工作
答案 0 :(得分:0)
如果我没记错,那么您正在同一控制器中尝试路径,请尝试此操作,这应该可行:
返回RedirectToAction(“ Index”);
return RedirectToAction(“ Apartment”,“ Index”);
如果要将一个控制器重定向到另一控制器操作,请尝试以下操作:
return RedirectToAction(“ yourAnotherActionName”,“ yourAnotherControllerName”);