예제 #1
0
        public bool GetKullaniciGirisi(string email, string sifre)
        {
            LoginDB loginDB = new LoginDB();

            if (loginDB.GetKullaniciGiris(email, sifre))
            {
                HttpContext.Current.Response.Redirect("~/BitkiDetay.aspx");
            }
            else
            {
                HttpContext.Current.Response.Redirect("~/Login.aspx");
            }
            return(false);
        }