integer ı globalde tanımlayınız.


int sayi = 1;
private void timer1_Tick(object sender, EventArgs e)
{

webBrowser1.Navigate("http://www.google.com/" + sayi);
if(sayi==50)
{
    (sender as Timer).Stop();
    sayi=1;
}

}