0

我有一个首页和一个 CMS 区域,其中包含以下路线:

默认首页路由

routes.MapRoute(
    name: "Default",
    url: "{controller}/{action}/{id}",
    defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
    namespaces: new string[] { "SiteFactory.Site.Controllers" }

管理途径

context.MapRoute(
        "Administration_default",
        "administration/{controller}/{action}/{id}",
        new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

我想从我的 ContentController(在管理区域内)路由到首页 HomeController,如下所示:

[HttpPost]
[ValidateInput(false)]
public ActionResult Save(string content, string contentId, string pageId)
{
    if (ModelState.IsValid)
    {
        //TODO: save content.
    }
    return RedirectToRoute("Default");
}

我怎样才能做到这一点?

4

1 回答 1

1

只是return RidirectToAction("Index", "Home");

于 2013-07-17T06:09:47.683 回答