在我的MVC3项目中,我有一个控制器" MyDetailsController"在
区域 - >测试 - >控制器文件夹
来自ActionResult"创建"在MyDetailsController中,我想调用ActionResult"编辑" of" DetailsController"它位于我的应用程序的控制器文件夹中
这是我试过的代码
public ActionResult Create()
{
//Some Code
return RedirectToAction("Edit", "Details", new { id = Party.PartyID });
}
但它没有加载我需要的确切ActionResult。
我得到的网址是http://localhost:53970/Test/Details/Edit/977612
我需要的网址是http://localhost:53970/Details/Edit/977612
任何帮助将不胜感激,谢谢。
答案 0 :(得分:0)
这将有效:
return RedirectToAction("Edit", "DetailsController", new { id = Party.PartyID ,area = ""});