Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to embed a link to a controller action in my page so I can use it from javascript. Something like

var pollAction = '/Mycontroller/CheckStatus'

Now I am happy to hardcode it, but it would be really nice if there were a method I could use to create the URL. The AjaxHelper/HtmlExtensions contain methods to create hyperlinks (.ActionLink(...) and so on), but if you look into the guts of them, they rely on a method called UrlHelper.GenerateUrl() to resolve a controller and action into a url. This is internal so I can't really get at this.

Anyone found a good method in the framework to do this? Or must I roll my own?

share|improve this question

2 Answers

up vote 14 down vote accepted

Have yo tried something like this?

var pollAction = '<%=Url.Action("CheckStatus", "MyController") %>'
share|improve this answer
I knew there was a simple answer out there! Thanks! – Jennifer Dec 10 '08 at 11:26

If your page or control inherits from the ViewPage or ViewUserControl, use the Url.Action method.

If not, use this instead:

 string url = RouteTable.Routes.GetVirtualPath(((MvcHandler)HttpContext.Current.CurrentHandler).RequestContext,
 new RouteValueDictionary(new { controller = "MyController", action = "CheckState", id = idParameter })).VirtualPath;

Place this inside a method on your code behind and call it from the Html view.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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