c# - Controller and Action name autocomplete in HtmlHelper -
i'm have custom htmlhelper creating navigation menu links. want add intellisense support helper.
public static class menulinkhelper { public static mvchtmlstring menulink(this htmlhelper htmlhelper, string linktext, string actionname, string controllername) { //... } }
for example, when typing:
@html.menulink("mainpage", "index", "")
i want see autocompletion of controller's , action's name. how may this?
p.s.: i'm using asp.net mvc 4.
you need plugin visual studio. autocomplete done plugin.
Comments
Post a Comment