怎么做?目前我的代码是这样的:
public ActionResult Index()
{
try
{
return RedirectToAction("Page", "Content", new { url = "/Home.html" });
}
catch(Exception ex)
{
return View();
}
}