protected void EditarAluno(object sender, EventArgs e)
        {
            string sql = "UPDATE aluno SET ";

            //email
            if (inputEmail.Text != "")
            {
                sql += "email='" + inputEmail.Text + "', ";
            }

            //nome
            if (inputNome.Text != "")
            {
                sql += "nome='" + inputNome.Text + "', ";
            }

            //senha
            if (inputSenhaNova1.Text != "")
            {
                Byte[] novaSenha = Encrypt.Criptografar(inputSenhaNova1.Text);

                sql += "senha='" + Encrypt.CriptToString(novaSenha) + "', ";
            }

            //ajuste comando
            sql = sql.Substring(0, sql.Length - 2) + " WHERE matricula='" + inputMatricula.Text + "'";

            try
            {
                BancoDados.ExecuteSql(sql);
                Clear();

                alertSuccess.InnerText = "<strong>Parabéns! </strong> Seus dados foram alterados com sucesso!";
            }
            catch (Exception exe)
            {
                alertDanger.Visible   = true;
                alertDanger.InnerHtml = "<strong>Ops! </strong> Houve algum problema!<br><br>Message: " + exe.Message;
            }
        }