コード例 #1
0
        /// <summary>
        /// Handles the Load event of the Page control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                //Recuperar la url
                string pathRuta = HttpContext.Current.Request.Url.AbsolutePath;

                if (!validacionCuenta.validarPermiso(usuario.IdContacto, pathRuta))
                {
                    Response.Redirect(validacionCuenta.rutaHome(), true);
                }
                else
                {
                    CargarConvocatorias();

                    try
                    {
                        if (!String.IsNullOrEmpty(HttpContext.Current.Session["SelectedIndex"].ToString()))
                        {
                            DDL_Convocatoria.SelectedIndex = Int32.Parse(HttpContext.Current.Session["SelectedIndex"].ToString());
                            DDL_Convocatoria_SelectedIndexChanged(sender, e);
                            HttpContext.Current.Session["SelectedIndex"] = null;

                            llenarGrilla("");
                        }
                    }
                    catch (Exception) { }
                }
            }
        }
コード例 #2
0
        /// <summary>
        /// Handles the Load event of the Page control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        protected void Page_Load(object sender, EventArgs e)
        {
            //Recuperar la url
            string pathRuta = HttpContext.Current.Request.Url.AbsolutePath;

            if (!validacionCuenta.validarPermiso(usuario.IdContacto, pathRuta))
            {
                Response.Redirect(validacionCuenta.rutaHome(), true);
            }
            else
            {
                gvplanesnegocio.Attributes.CssStyle.Add("font-size", "9px");
                if (!IsPostBack)
                {
                    cargarDllOperador(usuario.CodOperador);
                    mostrarGrilla();
                    llenarGrilla();
                    GenerarFecha_Year();
                    CargarDropDown_Convocatorias();
                    DropDown_Fecha_Actual();
                }

                txtnummemorando.Attributes.Add("onkeypress", "javascript: return ValidNum(event);");
            }
        }
コード例 #3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         if (!validacionCuenta.validarPermiso(usuario.IdContacto, pathRuta))
         {
             Response.Redirect(validacionCuenta.rutaHome(), true);
         }
     }
 }
コード例 #4
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                //Recuperar la url
                string pathRuta = HttpContext.Current.Request.Url.AbsolutePath;

                if (!validacionCuenta.validarPermiso(usuario.IdContacto, pathRuta))
                {
                    Response.Redirect(validacionCuenta.rutaHome(), true);
                }
            }
        }
コード例 #5
0
        protected void Page_Load(object sender, EventArgs e)
        {
            Id_TareaUsuarioRepeticion = HttpContext.Current.Session["Id_tareaRepeticion"] != null ? Id_TareaUsuarioRepeticion = Convert.ToInt32(HttpContext.Current.Session["Id_tareaRepeticion"].ToString()) : 0;

            if (!IsPostBack)
            {
                //Recuperar la url
                string pathRuta = HttpContext.Current.Request.Url.AbsolutePath;

                if (!validacionCuenta.validarPermiso(usuario.IdContacto, pathRuta))
                {
                    Response.Redirect(validacionCuenta.rutaHome(), true);
                }
                else
                {
                    DateTime?fechaActual = DateTime.Today;
                    DateTime fechamostar = DateTime.Today;
                    txtDate2.Text = fechamostar.ToString("dd/MM/yyyy");



                    if (Id_TareaUsuarioRepeticion != 0)
                    {
                        menuMostar();
                        tbl1.Visible    = false;
                        tbl1.Enabled    = false;
                        Panel2.Visible  = true;
                        Panel2.Enabled  = true;
                        lbl_Titulo.Text = "REVISAR TAREA";
                    }
                    else
                    {
                        CargarPlanesDeNegocio();
                        tbl1.Visible    = true;
                        tbl1.Enabled    = true;
                        Panel2.Visible  = false;
                        Panel2.Enabled  = false;
                        lbl_Titulo.Text = "AGENDAR TAREA";
                    }

                    cargarActividades();


                    if (usuario.CodGrupo == Constantes.CONST_AdministradorSistema || usuario.CodGrupo == Constantes.CONST_GerenteAdministrador)
                    {
                        labelPlan.Visible = false;
                    }
                }
            }
        }
コード例 #6
0
        protected void Page_Load(object sender, EventArgs e)
        {
            //L_Fecha.Text = "" + DateTime.Now.Day + " Del Mes " + DateTime.Now.Month + " De " + DateTime.Now.Year;
            if (!IsPostBack)
            {
                ValidacionCuenta validacionCuenta = new ValidacionCuenta();

                //Recuperar la url
                string pathRuta = HttpContext.Current.Request.Url.AbsolutePath;

                if (!validacionCuenta.validarPermiso(usuario.IdContacto, pathRuta))
                {
                    Response.Redirect(validacionCuenta.rutaHome(), true);
                }
            }
        }
コード例 #7
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                string pathRuta = HttpContext.Current.Request.Url.AbsolutePath;

                if (!validacionCuenta.validarPermiso(usuario.IdContacto, pathRuta))//Se valida si el usuario tiene permisos de acceso a la pagina, en caso de no serlo se redirige al Home
                {
                    Response.Redirect(validacionCuenta.rutaHome(), true);
                }
                else
                {
                    lbl_Titulo.Text = void_establecerTitulo("PROYECTOS A FORMALIZAR");
                }
            }
        }
コード例 #8
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                string pathRuta = HttpContext.Current.Request.Url.AbsolutePath;

                if (!validacionCuenta.validarPermiso(Usuario.IdContacto, pathRuta))
                {
                    Response.Redirect(validacionCuenta.rutaHome(), true);
                }
                else
                {
                    //cargar Datos
                    cargarRecomendaciones();
                }
            }
        }