一个简单的下载网页的 函数
参数是网址
返回utf-8的网页
private string dld_(string href) { WebClient wc = new WebClient(); wc.Encoding = System.Text.Encoding.UTF8; string html = ""; try { html = wc.DownloadString(href); } finally { ; } return html; }