protected void Button1_Click1(object sender, EventArgs e) { if (TextBox1.Text == "" || TextBox2.Text == "" || TextBox3.Text == "" || TextBox4.Text == "" || TextBox5.Text == "") { MessageBox.Show("Tüm alanları Doldurun..."); } else if (Page.IsValid) { try { if (b1.kullanicivarmi(TextBox2.Text)) { MessageBox.Show("Kullanıcı sisteme kayıtlıdır..."); return; } b1.KullaniciEkle(TextBox1.Text, TextBox2.Text, TextBox3.Text, TextBox4.Text, TextBox5.Text); SqlDataSource1.SelectCommand = "select adsad,TC,kullanici_tipi,kullanici_ad,kullanici_sifre from kullanicilar "; TextBox1.Text = ""; TextBox2.Text = ""; TextBox3.Text = ""; TextBox4.Text = ""; TextBox5.Text = ""; } catch (Exception) { MessageBox.Show("Ekleme işleminde bir arıza oluştu lütfen sistem sorumlusuna bildirin..."); } } }