public static bool GirisOnay(Kullanici K) { KullaniciYonetimi KY = new KullaniciYonetimi(); if (K != null) { if (KY.KullaniciVarMi(K)) { return true; } else { return false; } } else { return false; } }
public ActionResult Login(Kullanici K) { KullaniciYonetimi KY = new KullaniciYonetimi(); try { if (KY.KullaniciVarMi(K)) { Session["Kullanici"] = KY.KullaniciGetir(K); return Redirect("Index"); } else { ViewBag.Hata = "Kullanici adı & şifre hatalı"; return View(K); } } catch (Exception) { return Redirect("Login"); } }
public ActionResult Login() { KullaniciYonetimi KY = new KullaniciYonetimi(); if (Session["Kullanici"]!=null) { if (KY.KullaniciVarMi((Kullanici)Session["Kullanici"])) { return Redirect("Index"); } else { ViewBag.Hata = "Kullanici adı & şifre hatalı"; return View(); } } else { return View(); } }