我有一个gridview,上面有一个按钮。我想,如果用户单击一行上的按钮,则该行将被删除。我做了这些步骤,但没有成功。请你帮我解决我的问题问题?
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
int k=int.Parse(GridView1.DataKeys[e.RowIndex].Value.ToString());
Label1.Text = k.ToString();
}
我想查看标签中的值但没有成功(我认为这个事件不会触发)