I'm making some @helper's inside of the App_Code folder. The intent is to completely replace my old HtmlHelpers written in a *.cs file with a string builder and all the other fun stuff. Anyways, in a couple of places, I'm using Url.Content in src attributes of tags. These used to work fine as HtmlHelpers. Now, that I got my code inside *.cshtml file in App_Code folder, the site doesn't want to compile:

CS0103: The name 'Url' does not exist in the current context

yeah... What's a good way to solve this? I wouldn't want to have a relative path there instead of path mapping. Thanks!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You could pass it as argument to the helper:

@helper Foo(UrlHelper url) {
    @url.Action("~/foo");
}

and then:

@Foo(Url)
link|improve this answer
Lol! I just realized, that helper isn't used anymore. That works, thanks! – Dimskiy May 13 '11 at 21:55
feedback

Your Answer

 
or
required, but never shown

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