Ejemplo n.º 1
0
        protected void gradesGrid_DeleteCommand(Object s, ComponentArt.Web.UI.GridItemEventArgs e)
        {
            int           nExamResultId = (int)e.Item["ExamResultId"];
            ExamResultBLL bllExamResult = new ExamResultBLL();

            bllExamResult.DeleteExamResult(nExamResultId);

            gradesGrid.DataSource = GetDataSet();
            gradesGrid.DataBind();
        }