上网时无意中发现自己不久前注册的网站(也就是当前网站),刷新一下访问量就加1,自己进入自己的博客,只要链接访问量也会加1,用C#写了个小程序测试了下,y一个简单的程序居然可以用恶意刷新...对此强烈不满!!!我尽快的给管理员发邮件通知,希望能尽快修复...
 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Test
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private int count = 0;
        private bool continues;
        private void Start_Click(object sender, EventArgs e)
        {
            if (Run.Text == "Stop")
            {
                Run.Text = "Start";
                tm.Stop();
            }
            else
            {
                wbURL.Url = new Uri(txtURL.Text);
                continues = false;
                Run.Text = "Stop";
                tm.Start();
                count = 0;
                toolMsg.Text = "Message";
            }
        }
        private void tm_Tick(object sender, EventArgs e)
        {
            if (txtURL.Text != "")
            {
                reload();
            }
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            tm.Stop();
        }
        private void wbURL_FileDownload(object sender, EventArgs e)
        {
            continues = false;
        }
        private void wbURL_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
        {
            continues = true;
        }
        private void reload()
        {
            if (continues)
            {
                wbURL.Refresh();
                count++;
                toolMsg.Text = "成功刷新了" + count.ToString() + "次";
            }
        }
    }
}