Beispiel #1
0
        protected void Button4_Click(object sender, EventArgs e)
        {
            string KullaniciAdi = Convert.ToString(Session["KullaniciAdi"]);
            string KitapAdi     = Convert.ToString(Session["KitapAdi"]);
            int    KitapPuan    = Convert.ToInt32(DropDownList1.SelectedValue);
            int    KitapId      = Islemler.KitapIDCek(KitapAdi);

            Islemler.PuanEkle(KullaniciAdi, KitapId, KitapAdi, KitapPuan);
            Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "Onay", "<script>alert('Puan kaydınız başarıyla sonuçlanmıştır. ');</script>");
        }