vote up 1 vote down star

why do i get the error " Expected class, interface, enum or struct" with string underlined?

 public static string IsSelected(this HtmlHelper helper, string A, string B)

    {
         return "wtf";

    }
flag

73% accept rate

1 Answer

vote up 5 vote down check

Your extension method needs to be inside a static class:

public static class MyExtensions
{
    public static string IsSelected( this HtmlHelper helper, string A, string B)
    {
        return "wtf";

    }
}
link|flag
that fixed one part, but it still is not registering as an extension with system.web.mvc.htmlhelpers. what else needs to be done? – zsharp Jan 21 at 21:36
actually, i imported namespace in view and it workes, but should i have to do that? – zsharp Jan 21 at 21:41
You can import the namespace in your web.config instead of the view itself. – Ben Robbins Jan 28 at 7:06
thanks..details details... – zsharp Jan 28 at 13:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.