protected string GetPageDefaultUTF8(string url)
        {
            WebDownloader wd          = new WebDownloader();
            string        strPageHtml = wd.GetPageByHttpWebRequest(url, Encoding.UTF8);

            return(strPageHtml);
        }
        public void GatherBlog(DoWorkEventArgs e)
        {
            m_wd = new WebDownloader();

            GatherInitFirstUrls();

            BlogGatherNext(e);
        }