protected void btnEkle_Click(object sender, EventArgs e) { Subject sc = new Subject(); try { sc.CreatedDate = DateTime.Now.ToLocalTime(); if (chAktif.Checked == true) { sc.IsActive = true; } else { sc.IsActive = false; } sc.SectionID = Convert.ToInt32(DropDownListBolum.SelectedValue); sc.Name = txtBolum.Text; islem.Ekle(sc); ScriptManager.RegisterStartupScript(Page, this.GetType(), "js", "Bilgilendirme('Konu başarıyla eklendi.','success');", true); txtBolum.Text = ""; chAktif.Checked = false; } catch (Exception) { ScriptManager.RegisterStartupScript(Page, this.GetType(), "js", "Kaydedilirken bir hata oluştu.','error');", true); } }