in gridview property go to Events there doublic click of RowUpdating Event which will automaticall redirect into code behind...Inside the RowUpdating event u can code for updation
ex:
Protected Sub GridView1_RowUp dating(ByVal sender As Object, ByVal e As System.Web.UI.W ebControls.Grid ViewUpdateEvent Args) Handles GridView1.RowUp dating
int i ;
i = e.RowIndex;
so i contain rowindex now u can...
Leave a comment: