| Author: Virender Kumar 20 Jun 2008 | Member Level: Gold | Rating: Points: 2 |
you can do it by using Item data bound event of grid view. in this event u can track that which row's button is clicked and according to that u can change the color of the row.
|
| Author: srilu 20 Jun 2008 | Member Level: Diamond | Rating: Points: 2 |
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) { int i=Convert.ToInt32(e.CommandArgument); GridView1.Rows[i].BackColor = System.Drawing.Color.Blue;
}
|
| Author: Gaurav Agrawal 20 Jun 2008 | Member Level: Diamond | Rating: Points: 2 |
http://www.rupeemail.in/rupeemail/invite.do?in=MTAxNTM0JSMlS0hqblZtUFI0c3BmTmw2azNNVDhyb1dCaA==
Register on this site by this link
|