How do I find the absolute url of an action in ASP.NET MVC?

Click here for more information, but esentially there is no need for extension methods. It’s already baked in, just not in a very intuitive way.

Url.Action("Action", null, null, Request.Url.Scheme);

Leave a Comment