我如何编写一个自定义的HTML帮助程序与参数的建议

时间:2016-10-03 14:52:16

标签: c# asp.net razor

我在我的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向我建议控制器和动作参数的值吗?提前谢谢。

0 个答案:

没有答案