标签:
public bool IsHttpUrl(string Value) { if ((Value.Substring(0, 7) == "http://") || (Value.Substring(0, 8) == "https://")) return true; return false; }
判断字符串是否是网址
原文地址:http://www.cnblogs.com/wenjieyatou/p/5469956.html