public void ImportProduct(string url) { Uri u = new Uri(url); string path = u.AbsolutePath; ControlsUtils.OperationLog("识别地址..."); if (path.IndexOf("item.htm") > -1) { //详情 string id = Utils.GetId(url); if (!string.IsNullOrEmpty(id)) { new Task(() => { CollectToDB(id); }).Start(); } } else { ControlsUtils.Msg("请填写正确的淘宝详情链接!"); } //else if (path.IndexOf("search") > -1) //{ // string content= Utils.SendWebRequest(url); // //列表 // List<string> list = Utils.GetMatchList(content, "detail_url\":\"(.*?)\""); // if (list != null && list.Count > 0) // { // MaxVal = list.Count; // CurVal = 0; // foreach (var item in list) // { // string infoUrl = HttpUtility.HtmlDecode(item); // string id = Utils.GetId(infoUrl); // if (!string.IsNullOrEmpty(id)) // { // new Task(() => // { // CollectToDB(id); // CurVal++; // ControlsUtils.SetProgressBarValue(MaxVal, CurVal); // }).Start(); // } // } // } //} //else if (path.IndexOf(".taobao.com") > -1) //{ // //列表 //} }