vote up 0 vote down star

I want to use the Html Helper class to build, for example, an Html.ActionLink from within a controller action. I don't see it available from within controller actions. What am I missing?

flag
Oh, I totally understand to resist using Html Helpers in the controllers... but what happens when I want logic to control which link is presented? Then I have to dump logic into my view. Same violation, different area. – Anthony Aug 14 at 21:55

2 Answers

vote up 0 vote down check

Consider using UrlHelper @ Controller.Url. You can use it to generate a url, then pass it to your view. The view is the right place to create a link to the url.

link|flag
vote up 1 vote down

I don't think you should be using the html helper methods in your controller. This stuff is best left in the view

link|flag

Your Answer

Get an OpenID
or

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