功能:迅速增加网站外链,提高网址PR

1.主界面:

基于C#的超级外链工具

2.使用:

基于C#的超级外链工具

3.查看效果

基于C#的超级外链工具

4.关键代码:

 public void GetHtml(Array souUrl)
        {
            this.webBrowser1.Navigated += new WebBrowserNavigatedEventHandler(browser_Navigated);
            this.webBrowser1.ScriptErrorsSuppressed = true; 
            int i = 0;
            foreach (Object tempUrl in souUrl)
            {
                i++;
                loading = true;  //表示正在加载
                this.webBrowser1.Navigate(tempUrl.ToString());
                this.label4.Text = "正在增加第"+i+"个外链......";
                String temp = tempUrl.ToString();
                if (temp.Length > 50)
                {
                    temp = temp.Substring(0,50)+"......";
                }
                this.label2.Text += "正在向" + temp + "提交" + textBox1.Text + "......\n";
                while (loading)
                {
                   Application.DoEvents();//等待本次加载完毕才执行下次循环.
               }
            }

 

相关文章: