Exemplo n.º 1
0
        public ActionResult Index(string kullaniciAdi, string sifre)
        {
            emlakDB      db = new emlakDB();
            Kullanicilar k  = db.Kullanicilar.Where(x => x.kullaniciAdi == kullaniciAdi && x.sifre == sifre && x.admin == true).SingleOrDefault();

            if (k == null)
            {
                TempData["a"] = "Kullanıcı Bulunamadı !!";
                return(View());
            }
            else
            {
                Session["Kullanici"] = k;
                return(RedirectToAction("Index", "Admin"));
            }
        }