private void cargar_DropDownList_NOMBRE_SECCION()
    {
        DropDownList_NOMBRE_SECCION.Items.Clear();

        seccion _seccion = new seccion(Session["idEmpresa"].ToString());
        DataTable tablaSecicones = _seccion.ObtenerTodasLasSecciones();

        ListItem item = new ListItem("Seleccione Sección", "");
        DropDownList_NOMBRE_SECCION.Items.Add(item);

        foreach (DataRow fila in tablaSecicones.Rows)
        {
            item = new ListItem(fila["ID_SECCION"].ToString() + " - " + fila["NOMBRE"].ToString(), fila["ID_SECCION"].ToString());
            DropDownList_NOMBRE_SECCION.Items.Add(item);
        }

        DropDownList_NOMBRE_SECCION.DataBind();
    }
    private void cargar_GridView_SECCIONES()
    {
        seccion _seccion = new seccion(Session["idEmpresa"].ToString());
        DataTable tablaInfo = _seccion.ObtenerTodasLasSecciones();

        if (tablaInfo.Rows.Count <= 0)
        {
            if (_seccion.MensajError != null)
            {
                Informar(Panel_FONDO_MENSAJE_SECCION, Image_MENSAJE_SECCION_POPUP, Panel_MENSAJE_SECCION, Label_MENSAJE_SECCION, _seccion.MensajError, Proceso.Error);
            }
            else
            {
                Informar(Panel_FONDO_MENSAJE_SECCION, Image_MENSAJE_SECCION_POPUP, Panel_MENSAJE_SECCION, Label_MENSAJE_SECCION, "ADVERTENCIA: No se encontró información de SECCIÓNES.", Proceso.Error);
            }

            GridView_SECCIONES.DataSource = null;
            GridView_SECCIONES.DataBind();
        }
        else
        {
            cargar_GridView_SECCIONES_desde_tabla(tablaInfo);
            admin_columnas_grilla(GridView_SECCIONES,true, true, true, false);
        }
    }