Chcę napisać małą metodę pomocniczą, która zwraca podstawowy adres URL witryny. Oto co wymyśliłem: public static string GetSiteUrl() { string url = string.Empty; HttpRequest request = HttpContext.Current.Request; if (request.IsSecureConnection) url = "https://"; else url = "http://"; url...