protected void Page_Load(object sender, EventArgs e) { ScriptManager sm = ScriptManager.GetCurrent(this); if (sm != null) { sm.Scripts.Add(new ScriptReference(ArquivoJS.JQueryValidation)); sm.Scripts.Add(new ScriptReference(ArquivoJS.JqueryMask)); sm.Scripts.Add(new ScriptReference(ArquivoJS.MascarasCampos)); } if (!IsPostBack) { if (Session["ManutencaoCidade_dtAssociacaoCidades"] != null) { _VS_AssociacaoCidades = (DataTable)(Session["ManutencaoCidade_dtAssociacaoCidades"]); Session.Remove("ManutencaoCidade_dtAssociacaoCidades"); } try { UCComboPais.Inicialize("País *"); UCComboPais._EnableValidator = true; UCComboPais._ValidationGroup = "vlgPais"; UCComboPais._Load(0); UCComboUnidadeFederativa.Inicialize("Estado", false); UCComboUnidadeFederativa._EnableValidator = false; UCComboUnidadeFederativa._ValidationGroup = "vlgPais"; UCComboUnidadeFederativa._Load(Guid.Empty, 0); UCComboUnidadeFederativa._Combo.Enabled = false; UCComboPais._Combo.Enabled = false; _txtDDD.Enabled = false; _txtCidade.Enabled = false; _Limpar(); _lblMessage.Visible = false; _CarregarGridAssociacaoCidades(); } catch (Exception ex) { ApplicationWEB._GravaErro(ex); _lblMessage.Text = UtilBO.GetErroMessage("Erro ao tentar carregar o endereço.", UtilBO.TipoMensagem.Erro); } Page.Form.DefaultFocus = UCComboPais._Combo.ClientID; Page.Form.DefaultButton = _btnConfimarAssociacao.UniqueID; } UCComboPais.OnSelectedIndexChange = UCComboPais__IndexChanged; }
protected void Page_Load(object sender, EventArgs e) { ScriptManager sm = ScriptManager.GetCurrent(this); if (sm != null) { sm.Scripts.Add(new ScriptReference(ArquivoJS.JQueryValidation)); sm.Scripts.Add(new ScriptReference(ArquivoJS.JqueryMask)); sm.Scripts.Add(new ScriptReference(ArquivoJS.MascarasCampos)); } if (!IsPostBack) { try { UCComboPais.Inicialize("País *"); UCComboPais._EnableValidator = true; UCComboPais._ValidationGroup = "vlgPais"; UCComboPais._Load(0); UCComboUnidadeFederativa.Inicialize("Estado", false); UCComboUnidadeFederativa._EnableValidator = false; UCComboUnidadeFederativa._ValidationGroup = "vlgPais"; UCComboUnidadeFederativa._Load(Guid.Empty, 0); UCComboUnidadeFederativa._Combo.Enabled = false; } catch (Exception ex) { ApplicationWEB._GravaErro(ex); _lblMessage.Text = UtilBO.GetErroMessage("Erro ao tentar carregar o sistema.", UtilBO.TipoMensagem.Erro); } _Limpar(); if ((PreviousPage != null) && (PreviousPage.IsCrossPagePostBack)) { _Carregar(PreviousPage.EditItem); } else { _btnSalvar.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_inserir; } Page.Form.DefaultFocus = UCComboPais._Combo.ClientID; Page.Form.DefaultButton = _btnSalvar.UniqueID; } UCComboPais.OnSelectedIndexChange = UCComboPais__IndexChanged; }
protected void Page_Load(object sender, EventArgs e) { ScriptManager sm = ScriptManager.GetCurrent(this); if (sm != null) { sm.Scripts.Add(new ScriptReference(ArquivoJS.MsgConfirmExclusao)); } if (!IsPostBack) { string message = __SessionWEB.PostMessages; if (!String.IsNullOrEmpty(message)) { _lblMessage.Text = message; } _grvUnidadeFederativa.PageSize = ApplicationWEB._Paginacao; try { UCComboPais.Inicialize("País"); UCComboPais._EnableValidator = false; UCComboPais._Load(0); string pais_padrao = SYS_ParametroBO.ParametroValor(SYS_ParametroBO.eChave.PAIS_PADRAO_BRASIL); if (!string.IsNullOrEmpty(pais_padrao)) { UCComboPais.SetaEventoSource(); UCComboPais._Combo.DataBind(); UCComboPais._Combo.SelectedValue = pais_padrao; } } catch (Exception ex) { ApplicationWEB._GravaErro(ex); _lblMessage.Text = UtilBO.GetErroMessage("Erro ao tentar carregar o sistema.", UtilBO.TipoMensagem.Erro); } VerificaBusca(); Page.Form.DefaultButton = _btnPesquisar.UniqueID; Page.Form.DefaultFocus = UCComboPais._Combo.ClientID; _divPesquisa.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_consultar; _btnPesquisar.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_consultar; } }