//*************** On RowCommand
GridViewRow gvr = (GridViewRow)(((LinkButton)e.CommandSource).NamingContainer);
int rnd = gvr.RowIndex; //Row Index
//*************** On RowDataBound
int rnd= e.Row.RowIndex; //Row Index
GridViewRow gvr = (GridViewRow)(((LinkButton)e.CommandSource).NamingContainer);
int rnd = gvr.RowIndex; //Row Index
//*************** On RowDataBound
int rnd= e.Row.RowIndex; //Row Index
showing error as object reference not set
ReplyDelete