private void BtnOgrenciGiris_Click(object sender, EventArgs e) { SqlCommand komut = new SqlCommand("Select * From TblOgrenci where Numara=@p1 and Sıfre=@p2", bgl.baglanti()); komut.Parameters.AddWithValue("@p1", MskOgrenciNumara.Text); komut.Parameters.AddWithValue("@p2", TxtOGrenciSifre.Text); SqlDataReader dr = komut.ExecuteReader(); if (dr.Read()) { FrmOgrenci frm = new FrmOgrenci(); frm.numara = MskOgrenciNumara.Text; frm.Show(); this.Hide(); } else { MessageBox.Show("Hatalı Numara ya da Şifre", "Uyarı!", MessageBoxButtons.OK, MessageBoxIcon.Stop); } bgl.baglanti().Close(); }
private void BtnOgrenciGiris_Click(object sender, EventArgs e) { SqlCommand komut = new SqlCommand("Select * from TblOgrenci where NUMARA=@p1 and SIFRE=@p2", bgl.baglanti()); //bgl nesnesi ile SqlBaglantisi classına gideriz ordan da baglanti metoduna komut.Parameters.AddWithValue("@p1", MskOgrenciNumara.Text); komut.Parameters.AddWithValue("@p2", TxtOgrenciSifre.Text); SqlDataReader dr = komut.ExecuteReader(); if (dr.Read()) { FrmOgrenci frm = new FrmOgrenci(); frm.numara = MskOgrenciNumara.Text; frm.Show(); MessageBox.Show("Sisteme Hoş Geldiniz", "Bilgi", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Hide(); } else { MessageBox.Show("Hatalı Numara ya da Şifre", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Stop); } bgl.baglanti().Close(); }