13
Sitenin baseurl'unu nasıl edinebilirim?
Sitenin temel URL'sini döndüren küçük bir yardımcı yöntem yazmak istiyorum. Ben geldi budur: public static string GetSiteUrl() { string url = string.Empty; HttpRequest request = HttpContext.Current.Request; if (request.IsSecureConnection) url = "https://"; else url = "http://"; url += request["HTTP_HOST"] + "/"; return url; } Bu konuda aklınıza gelebilecek herhangi bir hata …
183
c#
asp.net
uri
httprequest