为什么没有在 Url 中添加使用 UrlHelper 定义的扩展方法。EXTENSIONMETHOD当我想在控制器中使用它时!但我可以访问它?
public static string Home(this UrlHelper helper)
{
return helper.RouteUrl("ABC", new { controller = "ABC", Action = "Default" });
}
我没有访问:
public ActionResult Default()
{
return Redirect(Url.Home());
}
我可以访问:
<a href="<%=Url.Home() %>" title="Hello">Hello</a>