protected void btnGunnSoz_Click(object sender, EventArgs e) { if (txtGunSozz.Text == "") { lblGunSozSonuc.Text = "Alanı Doldurunuz."; } else { kullanicilar.gununsozu = txtGunSozz.Text; bool guncellendimi = kullanicilar.GununSozuGuncelle(); if (guncellendimi) { Response.Redirect("Default.aspx"); } else { lblGunSozSonuc.Text = "Rahmet Olası Hatalar Oluştu. Lütfen Daha Sonra Tekrar Deneyin."; } } }