Skip to content

Instantly share code, notes, and snippets.

@MohammadYounes
Forked from shawnmclean/absolute.cs
Last active August 29, 2015 14:07
Show Gist options
  • Save MohammadYounes/89570f4118566dc220fd to your computer and use it in GitHub Desktop.
Save MohammadYounes/89570f4118566dc220fd to your computer and use it in GitHub Desktop.
//Your ValuesController.cs
//Version 1
string uri = Url.Route("Default", new { controller="Home", action="MyAction", id = 1 });
string absoluteUrl = new Uri(Request.RequestUri, uri).AbsoluteUri;
//http://localhost/Home/MyAction/1
//Version 2
string uri = Url.Route("DefaultApi", new { id = 1 });
string absoluteUrl = new Uri(Request.RequestUri, uri).AbsoluteUri;
//http://localhost/api/Values/1
//Your Global.asax
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}/{action}",
defaults: new {action = "Index", id = RouteParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment