19

是否可以在 (asp.net-mvc3 ) 控制器操作中重定向到 aspx 页面?动作的返回类型应该是什么(ActionResult?)以及应该调用哪个重定向方法(RedirectToAction?)。

BR,

4

2 回答 2

33

您可以从 MVC 操作重定向到任何地方,您必须使用RedirectResult它。RedirectResult是 的一种ActionResult

例如。

public RedirectResult RedirectToAspx()
{
  return Redirect("/pages/index.aspx");
}
于 2012-10-19T15:14:06.017 回答
1

是的,就像剃须刀一样。

看法:

test.aspx

控制器:

    public ActionResult test()
    {
        ViewBag.Message = "test。";

        return View();
    }
于 2012-10-19T15:10:43.723 回答