protected void Page_Load(object sender, EventArgs e)
    {
        UtilBO.SetScriptBusca(Page, _btnNovo, new string[] { }, String.Concat(ApplicationWEB._DiretorioVirtual, "AreaAdm/Cidade/Cadastro.aspx?Pesquisar=", _btnPesquisar.ClientID), "Cadastro de cidade", 350, 250);
        UCComboPais1.OnSelectedIndexChange = UCComboPais1__IndexChanged;

        if (!IsPostBack)
        {
            UCComboPais1._ShowSelectMessage = true;
            UCComboPais1._Load(0);
            UCComboUnidadeFederativa1._ShowSelectMessage = true;
            UCComboUnidadeFederativa1._Load(Guid.Empty, 0);

            fdsResultados.Visible = false;

            string parametro = SYS_ParametroBO.ParametroValor(SYS_ParametroBO.eChave.PAIS_PADRAO_BRASIL);
            if (!string.IsNullOrEmpty(parametro))
            {
                UCComboPais1._Combo.SelectedValue = parametro;
                _ChangeComboPais();
                _VS_pais_padrao = parametro;
                UCComboUnidadeFederativa1._Load(new Guid(parametro), 1);
                UCComboUnidadeFederativa1._Combo.Enabled = true;
            }
            else
            {
                UCComboUnidadeFederativa1._Combo.Enabled = false;
            }

            Page.Form.DefaultButton = _btnPesquisar.UniqueID;
            Page.Form.DefaultFocus  = UCComboPais1._Combo.ClientID;
        }
    }