protected void btn_go_Click(object sender, EventArgs e) { if (txt_firmaadi.Text == string.Empty || txt_adres.Text == string.Empty || txt_mail.Text == string.Empty || txt_vergino.Text == string.Empty || txt_parola.Text == string.Empty) { Response.Write("<script>alert('Lütfen zorunlu alanları doldurunuz!')</script>"); } else { if (txt_parola.Text == txt_parola2.Text) { EntityFirm ent = new EntityFirm(); ent.Firma_Adi1 = txt_firmaadi.Text; ent.Adres1 = txt_adres.Text; ent.Vergi_Dairesi1 = txt_vergidairesi.Text; ent.Vergi_No1 = txt_vergino.Text; ent.Mail1 = txt_mail.Text; ent.Telefon1 = txt_telefon.Text; ent.Parola1 = txt_parola.Text; BLLFirmaEkle.FirmaEkleBLL(ent); temizle(); Response.Write("<script>alert('Kayıt işleminiz başarı ile gerçekleşti!')</script>"); } else { Response.Write("<script>alert('Girmiş olduğunuz parolanın birbiri ile uyumlu olması gerekiyor!')</script>"); } } }
public static int FirmaEkleBLL(EntityFirm p) { // if (p.Firma_Adi1 != null && p.Vergi_No1 != null && p.Parola1 != null && p.Adres1 != null && p.Vergi_Dairesi1 != null && p.Mail1 != null && p.Telefon1 != null) if (p.Vergi_No1 != null && p.Mail1 != null) { return(DALfirma.FirmaEkle(p)); } return(-1); }
public static int FirmaEkle(EntityFirm parametre) { SqlCommand komut = new SqlCommand("insert into Firma (Firma_Adi, Adres, Vergi_Dairesi, Vergi_No, Telefon, Mail, Parola) values (@a1,@a2,@a3,@a4,@a5,@a6,@a7)", BaglantiDB.bgldb); if (komut.Connection.State != ConnectionState.Open) { komut.Connection.Open(); } komut.Parameters.AddWithValue("@a1", parametre.Firma_Adi1); komut.Parameters.AddWithValue("@a2", parametre.Adres1); komut.Parameters.AddWithValue("@a3", parametre.Vergi_Dairesi1); komut.Parameters.AddWithValue("@a4", parametre.Vergi_No1); komut.Parameters.AddWithValue("@a5", parametre.Telefon1); komut.Parameters.AddWithValue("@a6", parametre.Mail1); komut.Parameters.AddWithValue("@a7", parametre.Parola1); return(komut.ExecuteNonQuery()); }