public bool IsHttpUrl(string Value) { if ((Value.Substring(0, 7) == "http://") || (Value.Substring(0, 8) == "https://")) return true; return false; }