I'm trying to write a simple declarative html helper:

@helper Echo(string input) {
    @input
}

The helper works fine if I embed it into the page I want to use it on. But if I move it to a separate .cshtml file and place that file in the ~/Views/Helpers directory, my view can't be compiled anymore because the helper is not found. According to Scott Gu's blog article on Razor it should work.

What am I doing wrong?

link|improve this question

I'm pretty sure the helpers aren't enabled in a separate view just yet. I know it's in the works though. – BuildStarted Dec 15 '10 at 15:39
feedback

4 Answers

up vote 30 down vote accepted

The ~/Views/Helpers location as describe in that ScottGu post will not work in MVC 3 RTM. At the time that article was written it was a design idea we were tossing around but ultimately we were not able to implement it.

Putting your helpers in App_Code works but has certain limitations that impact certain MVC scenarios (for example: no access to standard MVC Html. helpers)

link|improve this answer
1  
Does this mean that the declarative HTML helpers are effectively dead? Where's the advantage over a regular partial view? – Adrian Grigore Dec 15 '10 at 19:19
They're not dead and we are thinking of providing some add-ons (via MvcFutures, or a nuget package) that will address the problems. But at this point their future is "fuzzy". – marcind Dec 15 '10 at 20:28
I dug into this a little bit and have a question/proposal to support Html. methods for declarative @helpers in the App_Code folder. Can you have a look and see if it would work? stackoverflow.com/questions/5282655/… – Drew Noakes Mar 13 '11 at 16:42
2  
Probably a good idea to update the article, as it made me think it's in MVC 3 release. Thank you – CodeWorks Apr 13 '11 at 14:08
@marcind, will this be fixed in the next version of Razor/MVC/WebPages? – Omar May 7 at 18:06
show 1 more comment
feedback

As marcind said, we weren't able to support the ~/Views/Helpers location due to some limitations in our compilation model.

We're working on a better solution for declarative HTML helpers, but it won't make v1. For v1, we have two solutions:

  1. App_Code (which has some problems as Marcin mentioned, but does work)
  2. David Ebbo (member of the team) has a Visual Studio add-in that compiles them into your DLL
link|improve this answer
does mvc 3 final release support it now? – xport Jan 23 '11 at 19:16
@Recycle Bin -- apparently not. – Drew Noakes Feb 10 '11 at 16:41
No I verified that with another post here: stackoverflow.com/questions/4988135/… – Brian Mains Feb 17 '11 at 4:20
It just fooled me a hour ago too, helpers only work if you declared them in the same cshtml file. – Tiendq Apr 11 '11 at 10:20
feedback

I followed the steps listed in Scott's blog as well and wasn't able to get it working either.

I did some searching and found this link: http://dotnetslackers.com/articles/aspnet/Experience-ASP-NET-MVC-3-Beta-the-Razor-View-Engine.aspx#s19-create-custom-helper-method

Followed the steps and it's working. The key seems to be both the App_Code folder as well as using the file name dot helper name when calling the helper.

link|improve this answer
I don't believe it's the way Razor helpers are supposed to work, but it is a good workaround. Thanks a lot! – Adrian Grigore Dec 15 '10 at 16:56
feedback

Simple workaround:

In each helper add argument WebViewPage page.

App_Code\Test.cshtml:

@using System.Web.Mvc.Html
@using System.Web.Mvc

@helper HelloWorld(WebViewPage page)
{
  @page.Html.Label("HelloWorld")
}

This helper usage in any page:

 @Test.HelloWorld(this)
link|improve this answer
This doesn't appear to work - page.Html does not contain Label (or any of the other helper methods) – Ben Hughes Dec 12 '11 at 4:32
helper method Label (and other) is extension, declared in class System.Web.Mvc.Html.LabelExtension. add using System.Web.Mvc.Html – DarkGray Dec 22 '11 at 23:24
Worked great in my case, I needed to access the Html.AttributeEncode helper. Thanks DarkGray! – dwhite Feb 16 at 0:12
feedback

Your Answer

 
or
required, but never shown

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