예제 #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            this.IniciaTela();

            HttpCookie cookie = Request.Cookies["_culture"];
            if (cookie != null)
            {
                IdIdioma = Convert.ToInt32(cookie.Value);
            }

            gobjModEventos = DOModEvento.ObterModulo();
            CarregarObjetos(Utilitarios.TipoTransacao.Carregar);
        }
    }