protected void Page_Load(object sender, EventArgs e)
        {
            List <ENTITYURUN> URUNLIST = BLLURUN.URUNLISTELE();

            Repeater1.DataSource = URUNLIST;
            Repeater1.DataBind();
        }
        protected void Unnamed1_Click(object sender, EventArgs e)
        {
            ENTITYURUN ent = new ENTITYURUN();

            ent.Urunad    = TextBox1.Text;
            ent.Urunadet  = Convert.ToInt16(TextBox2.Text);
            ent.Urunfiyat = Convert.ToDecimal(TextBox3.Text);
            BLLURUN.URUNEKLE(ent);
        }