私のプロジェクトには、2 つの異なるコントローラーがあります。
これが主なものです:
public class Main : Controller
{
public ActionResult Index()
{
return View();
}
}
そして、これはもう1つです:
public class OtherOne : Controller
{
public ActionResult RandomAction()
{
return ... //more code here
}
}
「Main/Index」アクション と同じ結果を得るには、 「OtherOne/RandomAction」で何を返す必要がありますか?