protected void Button2_Click(object sender, EventArgs e)
        {
            try
            {
                if (TextBox1.Text == "" || TextBox2.Text == "" || TextBox3.Text == "" || TextBox4.Text == "" || TextBox5.Text == "")
                {
                    MessageBox.Show("Tüm alanları Doldurun...");
                }
                else if (Page.IsValid)
                {
                    b1.KullaniciGuncelle(TextBox1.Text, TextBox2.Text, TextBox5.Text, TextBox3.Text, TextBox4.Text);
                    SqlDataSource1.SelectCommand = "select adsad,TC,kullanici_tipi,kullanici_ad,kullanici_sifre from kullanicilar ";
                    MessageBox.Show("başarılı");
                    TextBox2.Enabled = true;

                    TextBox1.Text = "";
                    TextBox2.Text = "";
                    TextBox3.Text = "";
                    TextBox4.Text = "";
                    TextBox5.Text = "";
                }
            }
            catch (Exception)
            {
                MessageBox.Show("Düzenleme işleminde bir arıza oluştu  lütfen sistem sorumlusuna bildirin...");
            }
        }