摘要: #region 根据网站地址(URL)获取整站的 HTML /// /// 根据网站地址(URL)获取整站的 HTML /// /// 网站地址(URL) /// 整站的 HTML public static string GetHtmlContentsByUrl(string urlPath) { string returnStr = string.Empty; try { WebClient client = new WebClient(); //向URL标识的资源发送数据和从URL标识的资源接收数据 returnStr = client.Downloa 阅读全文
posted @ 2008-11-13 10:03 白胡子海盗 阅读(527) 评论(0) 推荐(1) 编辑