protected void Page_Load(object sender, EventArgs e) { this.controller = new CentroDeCustoController(); if (!Page.IsPostBack) { PopularDropDownDeHospitais(); ddlHospitais.SelectedValue = Session["DepartamentoLogadoId"].ToString(); PopularDropDownDeCentrosDeCustoPor(int.Parse(ddlHospitais.SelectedValue)); PopularRepeaterDeContas(); } hdnCodigoCentroDeCusto.Value = ddlCentrosDeCusto.SelectedValue; }
protected void Page_Load(object sender, EventArgs e) { this.controller = new CentroDeCustoController(); FuncaoDaPagina = Request.QueryString["funcao"]; VisibilidadeDropCentroCusto(); if (!Page.IsPostBack) { PopularRepeaterDeContas(); PopularDropDownDeHospitais(); PopularDropDownDeCentrosDeCusto(); } }