Is it possible to get the route/virtual url associated with a controller action or on a view? I saw that Preview 4 added LinkBuilder.BuildUrlFromExpression helper, but it\'
This worked for me:
<%= this.Url.RouteUrl(this.ViewContext.RouteData.Values) %>
It returns the current Url as such; /Home/About
/Home/About
Maybe there is a simpler way to return the actual route string?