Hi,
I'm going to write a ton of helpers for my app.
For many of them I'd like not to extend HtmlHelper, but to create another helper class instead, for two reasons: 1) to be able to write, say, Link.Home and Icon.Edit instead of Html.HomeLink and Html.IconEdit; 2) to be able to easily tell standard helpers from custom ones and where the latter are defined.
Is this possible? How?
Is this not recommended? why?
thanks