我在我的proyect中写了一个htmlhelper:
public static MvcHtmlString ActionLinkSpan(this HtmlHelper html, string linkText, string actionName, string controllerName, object htmlAttributes)
{
var a = new TagBuilder("a");/*some code*/return MvcHtmlString.Create(a.ToString());
}
并且工作正常,我怀疑是这样的:当我使用
时@Html.ActionLink("test", "action", "controller")
VS在自定义htmlhelper中提示我cotroller的名字,然后是行动的名称。所以我的问题是:有一种方法可以让VS向我建议控制器和动作参数的值吗?提前谢谢。