Add a click event to the Button and then use the following code
protected void LinkButton1_Click(object sender, EventArgs e)
{
GridViewRow row = (sender as LinkButton) as GridViewRow;
Label Label1 = row.FindControl("Label1") as Label;
Label1.Text = "ABC";
}