私は今日MVC3を学び始めたばかりなので、愚かなこと(特に名前の悪いタイトル)を許してください。
この URL は機能しません:
.../Test
しかし、これは次のことを行います:
.../Index
これが私のコードです:
public class MyController : Controller
{
public ActionResult Index()
{
return View();
}
}
public static class MyExt
{
public static ActionResult Test(this MyController test)
{
return test.Index();
}
}