Example #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        Page.Form.DefaultButton = _btnPesquisa.UniqueID;

        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));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.CamposData));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.UiAriaTabs));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.Tabs));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.PastaScriptRaiz + "Telas/jsModuloSeguranca.js"));
        }

        if (String.IsNullOrEmpty(_VS_Root))
        {
            _VS_Root = String.Concat(ApplicationWEB._DiretorioFisico, @"\Log\");
            _VS_Path = String.Empty;
        }

        if (!IsPostBack)
        {
            _txtDtInicio.Text   = DateTime.Now.ToString("dd/MM/yyyy");
            _txtDtFinal.Text    = DateTime.Now.ToString("dd/MM/yyyy");
            txtDataInicial.Text = DateTime.Now.ToString("dd/MM/yyyy");
            txtDataFinal.Text   = DateTime.Now.ToString("dd/MM/yyyy");

            try
            {
                UCComboSistema1.Inicialize("Sistema");
                UCComboSistema1._ShowSelectMessage = true;
                UCComboSistema1._EnableValidator   = false;
                UCComboSistema1._Load();

                _caminho          = String.Concat(_VS_Root, _VS_Path);
                _lblEndereco.Text = String.Format("<b>Endereço:</b> {0}", String.Concat(@"..\", _VS_Path));
                _CarregaGridDir();
                _CarregaGridFiles();
                _dgvDatas.PageSize    =
                    _dgvLogs.PageSize = ApplicationWEB._Paginacao;

                VerificaBusca();
            }
            catch (Exception err)
            {
                ApplicationWEB._GravaErro(err);
                _lblMessage.Text = UtilBO.GetErroMessage("Erro ao tentar carregar o sistema.", UtilBO.TipoMensagem.Alerta);
            }
        }
    }
    protected void Page_Load(object sender, EventArgs e)
    {
        Page.ClientScript.RegisterOnSubmitStatement(typeof(CustomTreeNode), Hidden1.ClientID, String.Format("$('#{0}').val($('#txtNovo').val());", Hidden1.ClientID));

        if (!IsPostBack)
        {
            try
            {
                UCComboSistema1.Inicialize("Sistema *");
                UCComboSistema1._Load();
                UCComboSistema1._ValidationGroup = "Pesquisa";

                _divConsulta.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_consultar;
                _TrataBotoes(false);

                _VS_Visoes = SYS_VisaoBO.GetSelectAll();
                _CarregarSelecionaVisoes(_VS_Visoes);

                _btnSalvar.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_inserir;
            }
            catch (Exception ex)
            {
                ApplicationWEB._GravaErro(ex);
                _lblMessageAcima.Text = UtilBO.GetErroMessage("Erro ao carregar o sistema.", UtilBO.TipoMensagem.Erro);
            }
        }

        //Script para a "janela" de visualização do módulo
        ScriptManager sm = ScriptManager.GetCurrent(this);

        if (sm != null)
        {
            sm.Scripts.Add(new ScriptReference(ArquivoJS.UiAriaTabs));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.Tabs));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.MsgConfirmBtn));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.MsgConfirmExclusao));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.PastaScriptRaiz + "Telas/jsModuloSeguranca.js"));
        }

        _VS_Mod_SiteMapMenu = _CheckSiteMapMenu();

        string script = String.Format("SetConfirmDialogButton('{0}','{1}');", String.Concat("#", _btnExcluir.ClientID), String.Format("Confirma a exclusão?"));

        Page.ClientScript.RegisterStartupScript(GetType(), _btnExcluir.ClientID, script, true);
    }
Example #3
0
    /// Verifica se tem busca salva na sessão e realiza automaticamente, caso positivo.
    /// </summary>
    private void VerificaBusca()
    {
        if (__SessionWEB.BuscaRealizada.PaginaBusca == Pagina.AreaAdm_LogErro)
        {
            // Recuperar busca realizada e pesquisar automaticamente
            string valor;

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("sis_id", out valor);
            if (!string.IsNullOrEmpty(valor) && valor != (-1).ToString())
            {
                UCComboSistema1.SetaEventoSource();
                UCComboSistema1._Combo.DataBind();
                UCComboSistema1._Combo.SelectedValue = valor;
            }

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("dataInicio", out valor);
            if (!string.IsNullOrEmpty(valor))
            {
                _txtDtInicio.Text = Convert.ToDateTime(valor).ToString("dd/MM/yyyy");
            }

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("dataTermino", out valor);
            if (!string.IsNullOrEmpty(valor))
            {
                _txtDtFinal.Text = Convert.ToDateTime(valor).ToString("dd/MM/yyyy");
            }

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("usu_login", out valor);
            _txtUsuario.Text = valor;

            _Pesquisar();
        }
        else
        {
            fdsResultado.Visible = false;
        }
    }