Yesterday I came across one of the sites that uses to display the "Views"(i.e.the no of persons visited the page).When I clicked the refresh button the count started increasing.
Then I wrote this small application to increase the view count.
browser = new WebBrowser();
for (int index = 0; index < 250000; index++)
{
{
browser.Navigate("url");
System.Threading.Thread.Sleep(100);
}
}
I reported the bug and they have rectified it.Now even if I press the F5 button the view count won't increase.But when I run the above program the count starts increasing..
Can somebody explain me the difference between Navigate function and Refresh(F5)?