protected void grdCusoUnidade_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName.Equals("Excluir")) { string idCurso = e.CommandArgument.ToString(); if (!String.IsNullOrEmpty(idCurso)) { cursocont = new CursoController(); try { cursocont.ExcluirCurso(idunidade, Convert.ToInt32(idCurso)); CarregargrdCursoUnidade(); } catch { } } } }