public static string GetSnapshotHtml(string url) { if (url.IsContains2("javascr", "&bcoffset=4")) { return(null); } ProxyLib.WebHelperNoCookieProxy web = new ProxyLib.WebHelperNoCookieProxy(); HTML.WebHelper web2 = new HTML.WebHelper(); var html = web2.GetHtml(url, null); var total2 = html.SubBefore("personalbar").SubLastStringAfter("totalCount"); int? total = html.SubBefore("personalbar").SubLastStringAfter("totalCount").ExInt(); while (!total.HasValue) { web.ChangeIp(); html = web.GetHtml(url, null, "utf-8"); var html2 = html.SubBefore("personalbar").SubLastStringAfter("totalCount"); total = html2.ExInt(); if (html2.IsContain("万")) { total = total * 10000; } } return(html); }