我今天刚开始学习 MVC3,所以请原谅任何愚蠢(特别是一个名字不好的标题)。
此网址无效:
.../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();
}
}