我在 Home 中有两个名为 'abc' 和 'def' 的动作Controller
。动作“abc”返回 RedirectToAction("def")。那么我可以在'def'中获得Redirect
离子触发的动作名称吗?
public ActionResult abc()
{
//Some code
return RedirectToAction("def");
}
public ActionResult def()
{
//Some code
string str = "You have been redirected from action 'abc'";
return Content(str);
}
我怎样才能在动作 def 中得到这个名字 abc ?