protected void btnGiris_Click(object sender, EventArgs e) { kullanicilar.mail = txtKAd.Text; kullanicilar.parola = txtParola.Text; if (txtKAd.Text == "" || txtParola.Text == "") { lblSonuc.Text = "Lütfen tüm alanları doldurunuz"; } else { if (!kullanicilar.UyeGirisKontrol()) { lblSonuc.Text = "Bilgileriniz Yanlış"; } else { HttpCookie cerezim = new HttpCookie("cerezdosyam"); cerezim["kAd"] = txtKAd.Text; kullanicilar.kAdi = cerezim["kAd"]; lblSonuc.Text = "Giriş başarılı"; cerezim.Expires = DateTime.Now.AddDays(1); Response.Cookies.Add(cerezim); Response.Redirect("Default.aspx"); } } }