Home に「abc」と「def」という名前の 2 つのアクションがありController
ます。アクション「abc」は RedirectToAction("def") を返します。Redirect
それで、イオンがトリガーされた「def」でアクションの名前を取得できますか。
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 を取得するにはどうすればよいですか?