我有一個ASP.NET MVC 3 Razor Web應用程序。從自定義HTML幫助程序訪問WebViewPage
我有一個WebViewPage
擴展:
public static bool Blah(this WebViewPage webViewPage)
{
return blah && blah;
}
,我想從我的HtmlHelper
擴展訪問此:
public static MvcHtmlString BlahHelper(this HtmlHelper htmlHelper, string linkText, string actionName)
{
// how can i get access to the WebViewPage extension method here?
}
我當然可以,如果複製WebViewPage
擴展的功能,我必須,但只是想知道是否可以從HTML助手訪問它。
達林再次營救。謝謝哥們。 :) – RPM1984 2011-12-22 23:30:51