Example #1
0
    protected void modalExcluirAluno(object source, RepeaterCommandEventArgs e)
    {
        _alunoBo = new AlunoBo();
        _alunoBo.ExcluirAluno(Convert.ToInt32(e.CommandArgument));

        ViewState["pagina"] = 0;
        CarregarAlunos();
        CarregarPaginas();
    }