Random r = new Random();
string captcha = "";
string[] karakterler = {1,2,3,4,5,6,7,8,9,0};
for(i=0;i < 8;i++)
{
string a = karakterler[r.Next(0,karakterler.Length)];
captcha += a;
}
lblCaptcha.Text = captcha;
if(txtCaptchaAlani.Text == captcha)
{
MessageBox.Show("Captcha doğru ");
}
else
{
MessageBox.Show("Captcha kodu yanlış ");
this.Close();
}
Hiç yorum yok:
Yorum Gönder