------------------------------------------------------------
void GridView1_RowUpdated(Object sender, GridViewUpdatedEventArgs e)
{
// Retrieve the row being edited.
int index = GridView1.EditIndex;
GridViewRow row = GridView1.Rows[index];
// Retrieve the value of the first cell
lblMsg.Text = "Updated record " + row.Cells[1].Text;
}
Sunday, April 24, 2011
Gridview_Tips_n_Tricks
Sunday, April 24, 2011 Posted by Vikas SharmaLabels: Gridview_Tips_n_Tricks
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment