如何在不重定向的情况下使用来自不同控制器的参数来提供View / Action?

时间:2016-10-19 07:01:32

标签: asp.net-mvc

怎么做?目前我的代码是这样的:

public ActionResult Index()
    {
        try
        {
            return RedirectToAction("Page", "Content", new { url = "/Home.html" });
        }
        catch(Exception ex)
        {
            return View();
        }            
    }

0 个答案:

没有答案