What does the class declaration look like? Make sure you have made the class itself static
as well:
public static class MyHelpers
{
public static string OutputBlah(this HtmlHelper helper)
{
return helper.InnerWriter.ToString();
}
}
And then use the regular Html
property of type HtmlHelper
in the View
:
<%= Html.OutputBlah() %>
Answer to follow-up question from OP:
When declaring a method like this (static
method in static class
, and with the first parameter with the this
keyword), you define an Extension Method - a feature that was introduced in C# 3.0. The basic idea is that you define a method that is hooked into another class, thus extending it.
In this case, you're extending the HtmlHelper
class (becuase that is the type of the this
parameter), and thereby making .OutputBlah()
available on any instance of HtmlHelper
. If you examine the Html
property of the ViewPage
, you'll notice that it is in fact of type HtmlHelper
.
So when you use Html.OutputBlah()
in your view, you're actually accessing the HtmlHelper
instance contained in the viewpage's Html
property, and calling your own extension method on it.