protected void btnGirisYap_Click(object sender, EventArgs e) { string sifre = txtSifre.Text; sifre = Kontrol.getSHA1Hash(sifre); string eposta = txtEposta.Text; //Ön Kontroller. //Giriş Kontrol Kullanici blKullanici = new Kullanici(); if (blKullanici.GirisKontrol(eposta, sifre)) { //Log tut. if (blKullanici.Getir1(eposta).grup_id != 2) { Session.Timeout = 20; Session.Add("KullaniciAdi", txtEposta.Text); Server.Transfer("Anasayfa.aspx"); } else if (blKullanici.Getir1(eposta).grup_id == 2) { Session.Timeout = 20; Session.Add("KullaniciAdi", txtEposta.Text); Server.Transfer("H_Anasayfa.aspx"); } } else { Response.Write("<script>alert('Kullanıcı Adı veya Şifre Yanlış!')</script>"); } }
public ActionResult SifreGuncelle(string eMail, string sifre, string eskiSifre) { Kullanici musteri = new Kullanici(); string hata = musteri.GirisKontrol(eMail, eskiSifre); if (hata.Length > 1) { return(RedirectToAction("Customer", new { hata = "Eski şifreniz yanlış olduğu için güncelleme yapılamadı, sıfırlamayı deneyebilirsiniz." })); } musteri.SifreGuncelle(eMail, sifre, eskiSifre); return(RedirectToAction("Customer", new { hata = "Şifreniz güncellenmiştir, yeni şifreniz ile giriş yapabilirsiniz." })); }
public ActionResult GirisYap(string eMail, string sifre, int id = 0) { Kullanici musteri = new Kullanici(); string hata = musteri.GirisKontrol(eMail, sifre); if (hata.Length > 1) { return(RedirectToAction("Login", new { hata = hata, id = id })); } Session["musteri"] = musteri; Site.CookieCreate("eMail", musteri.eMail); Site.CookieCreate("sifre", musteri.sifre); return(RedirectToAction(id == 1 ? "CheckOut" : "Index")); }
protected void btnDegistir_Click(object sender, EventArgs e) { DAL.Kullanici yeniK = new DAL.Kullanici(); DAL.Kullanici eskiK = new DAL.Kullanici(); Kullanici blKullanici = new Kullanici(); string yenisifre; string confirm; string sifre = eskiSifre.Text; sifre = Kontrol.getSHA1Hash(sifre); string eposta = kullanici.ToString(); if (blKullanici.GirisKontrol(eposta, sifre)) { yenisifre = yeniSifre.Text; confirm = sifreDogrula.Text; if (yenisifre == confirm) { eskiK = blKullanici.Getir1(eposta); yeniK.sifre = Kontrol.getSHA1Hash(yenisifre); if (blKullanici.Duzenle(eskiK, yeniK)) { Response.Write("<script>alert('Şifre değiştirme işlemi Başarılı!');</script>"); System.Threading.Thread.Sleep(1000); } else { Response.Write("<script>alert('Şifre değiştirme işlemi başarısız!');</script>"); } } else { Response.Write("<script>alert('Şifre Doğrulanmadı!')</script>"); } } else { Response.Write("<script>alert('Eski Şifreniz Yanlış!Giriş sayfasındaki Şifre Unuttum linkinden yeni şifre alabilirsiniz')</script>"); } }