Skip to content

Instantly share code, notes, and snippets.

@kjlape
Created January 28, 2015 13:51
Show Gist options
  • Select an option

  • Save kjlape/b62bfc783f73980a5206 to your computer and use it in GitHub Desktop.

Select an option

Save kjlape/b62bfc783f73980a5206 to your computer and use it in GitHub Desktop.
ASP.NET get current domain.
// http://stackoverflow.com/questions/61817/whats-the-best-method-in-asp-net-to-obtain-the-current-domain
Request.Url.Scheme + System.Uri.SchemeDelimiter + Request.Url.Host + (Request.Url.IsDefaultPort ? "" : ":" + Request.Url.Port)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment