protected void Button1_Click(object sender, EventArgs e)
        {
            string YoneticiAdi   = TextBox2.Text;
            int    YoneticiSifre = Convert.ToInt32(TextBox1.Text);

            string KullaniciAdi = TextBox2.Text;
            int    Sifre        = Convert.ToInt32(TextBox1.Text);

            bool varMi = Islemler.Login(Sifre, KullaniciAdi);
            bool yokMu = Islemler.LoginAdmin(YoneticiSifre, YoneticiAdi);

            if (varMi == true)
            {
                Session["giris"]        = true;
                Session["KullaniciAdi"] = KullaniciAdi;
                Response.Redirect("HomePage.aspx");
            }
            else if (yokMu == true)
            {
                Session["giris"]       = true;
                Session["YoneticiAdi"] = YoneticiAdi;
                Response.Redirect("AdminPage.aspx");
            }
            else
            {
                Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "Hata", "<script>alert('Yanlış şifre veya hatalı kullanıcı adı!');</script>");
            }
        }