I want to write a little helper method which returns the base URL of the site. This is what I came up with:
public static string GetSiteUrl() { string ur
Try this:
string baseUrl = Request.Url.Scheme + "://" + Request.Url.Authority + Request.ApplicationPath.TrimEnd('/') + "/";