Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Notez Bien : tb = TextBox
- c est un code pour verifier si l email entré dans un textbox est valid ou non
- page : Langage C
- Link : https://www.facebook.com/MOBY.c00
- */
- private void button1_Click(object sender, EventArgs e)
- {
- if ((tb.Text.Contains('@') || tb.Text.Contains('.') || tb.Text != "")&&(tb.Text.IndexOf('@') < (tb.Text.IndexOf('.') - 1 )&& tb.Text.IndexOf('@') != 0))
- {
- MessageBox.Show("Email Valid !", "Good");
- }
- else
- {
- MessageBox.Show("Email non valid ", "Erreur");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment