protected void Page_Load(object sender, EventArgs e) { try { string message = __SessionWEB.PostMessages; if (!String.IsNullOrEmpty(message)) { lblMensagem.Text = message; updMessage.Update(); } if (!IsPostBack) { VerificaPermissaoUsuario(); // Carrega os combos. UCComboCursoCurriculo1.CarregarCursoCurriculoSituacao(1); UCComboCalendario1.CarregarCalendarioAnual(); UCComboTipoDisciplina1.CarregarTipoDisciplinaPorCursoCurriculoPeriodo(1, 1, 1); UCComboTipoDisciplina1.PermiteEditar = false; UCComboCurriculoPeriodo1._Combo.Enabled = false; UCComboCurriculoPeriodo1.CancelSelect = true; UCComboMatrizHabilidades.Carregar(); bool orientacoesCurricularesAula = ACA_ParametroAcademicoBO.ParametroValorBooleanoPorEntidade(eChaveAcademico.PLANEJAMENTO_ANUAL_ORIENTACOES_CURRICULARES_AULAS, __SessionWEB.__UsuarioWEB.Usuario.ent_id); string url = orientacoesCurricularesAula ? "~/Academico/OrientacaoCurricular/CadastroHabilidade.aspx" : "~/Academico/OrientacaoCurricular/Cadastro.aspx"; UCComboMatrizHabilidades.Visible = orientacoesCurricularesAula; btnPesquisar.PostBackUrl = url; } } catch (Exception ex) { ApplicationWEB._GravaErro(ex); lblMensagem.Text = UtilBO.GetErroMessage("Erro ao tentar carregar o sistema.", UtilBO.TipoMensagem.Erro); updMessage.Update(); } Page.Form.DefaultButton = btnPesquisar.UniqueID; Page.Form.DefaultFocus = UCComboCursoCurriculo1.Combo_ClientID; UCComboCursoCurriculo1.IndexChanged += UCComboCursoCurriculo1_IndexChanged; UCComboCurriculoPeriodo1._OnSelectedIndexChange += UCComboCurriculoPeriodo1_IndexChanged; }
protected void Page_Load(object sender, EventArgs e) { try { if (!IsPostBack) { string message = __SessionWEB.PostMessages; if (!String.IsNullOrEmpty(message)) { lblMensagem.Text = message; } // Carrega os combos. UCComboCalendario1.CarregarCalendarioAnual(); UCComboMatrizHabilidades.Carregar(); } } catch (Exception ex) { ApplicationWEB._GravaErro(ex); lblMensagem.Text = UtilBO.GetErroMessage("Erro ao tentar carregar o sistema.", UtilBO.TipoMensagem.Erro); } }