private void preencherGrid() { AlunoDTO dto = new AlunoDTO(); dto.nome = txtNome.Text; dto.ano = int.Parse(txtAno.Text); dto.sexo = cmbSexo.SelectedValue.ToString(); dto.nomeUniversidade = cmbInstituicao.SelectedValue.ToString(); AlunoBRL brl = new AlunoBRL(); DataTable dt = brl.allUserInscricao(dto); grdAluno.DataSource = dt; grdAluno.DataBind(); lblAlunos.Text = "Total de alunos cadastrados: " + dt.Rows.Count; //calculaTotal(dt); }
private void preencherGrid() { AlunoDTO dto = new AlunoDTO(); dto.nome = txtNome.Text; if (!String.IsNullOrEmpty(txtAno.Text)) { dto.ano = int.Parse(txtAno.Text); } dto.sexo = cmbSexo.SelectedValue.ToString(); dto.nomeUniversidade = cmbInstituicao.SelectedValue.ToString(); if (!String.IsNullOrEmpty(cmbTipoAluno.SelectedValue.ToString())) { dto.idTipoAluno = int.Parse(cmbTipoAluno.SelectedValue.ToString()); } dto.situacao = cmbSituacao.SelectedValue.ToString(); AlunoBRL brl = new AlunoBRL(); DataTable dt = brl.allUserInscricao(dto); grdAluno.DataSource = dt; grdAluno.DataBind(); lblAlunos.Text = "Total de alunos cadastrados: " + dt.Rows.Count; //adicionando sessao para pegar na pagina de excel.- Session.Add("dtUsuario", dt); //ativa o botao para gerar o excel this.cmdGerarExcel.Visible = true; //calculaTotal(dt); }