I have a generic class and I want to generate a URL when given the controller and action values. The most obvious method is Html.Action(controller, action), but this can only be called within a View. I tried adding 'using System.Web.Mvc;' to my class, but this doesn't give me the Action() method. I also tried converting this to an HtmlHelper class, but again no luck.

How do I generate a fully qualified URL within a class using the controller and action names?

Thanks.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Found it as the last answer in this post: ASP.NET MVC public alternative to UrlHelper.GenerateUrl

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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