please Help me..
protected void GridView1_RowDeleting2(object sender, GridViewDeleteEventArgs e)
{
bool result;
StudentOperations opObj = new StudentOperations();
opObj.Id = Convert.ToInt32(GridView1.Rows[e.RowIndex].Cells[1].Controls[0]);
opObj.DeleteAStudent();
BindData();
}

Nanhe SiddiquePosted May 5, 2015, 11:47 PM