I have an ASP.NET MVC 3 Razor web application.
I have a WebViewPage extension:
public static bool Blah(this WebViewPage webViewPage) { return blah && blah; }
And I want to access this from my HtmlHelper extension:
public static MvcHtmlString BlahHelper(this HtmlHelper htmlHelper, string linkText, string actionName) {
I could, of course, duplicate the functionality of the WebViewPage extension if I had to, but just wondering if it is possible to access it from the HTML helper.
source share