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 var mı? Herkes bunu geliştirebilir mi?