当我从中删除一行时GridView
,它不会更新。我也看过这里
没有任何解决方案。
这是我的一些代码
private void SepettenOgeSil(int p)
{
SqlDataSource4.DeleteCommand = "Delete from ilker_sevim_sepets where seperID="+ p;
if (SqlDataSource4.Delete() > 0)
{
siparisleriGetir();
SqlDataSource4.DataBind();
// Button1_Click(null, null);
urunFiyatHesapla();
}
else
{
}
}
private void urunFiyatHesapla()
{
int tmpToplamUrunFiyati =0, tmpUAdeti;
int tmpTekUrunFiyati;
TextBox t;
int sayici=0;
foreach ( GridViewRow item in GridView1.Rows)
{
t= (TextBox)item.FindControl("TextBox2");
tmpUAdeti = Convert.ToInt32(t.Text);
tmpTekUrunFiyati =Convert.ToInt32(item.Cells[3].Text);
tmpToplamUrunFiyati += tmpTekUrunFiyati * tmpUAdeti;
}
Label2.Text = tmpToplamUrunFiyati.ToString();
}
urunFiyatHesapla();
当我在按钮单击事件中调用方法时,它可以工作。当我将它绑定到 a 时,GridView
我得到一个错误。
我的错误在哪里?