protected void ImgEliminaGes_Click(object sender, ImageClickEventArgs e)
        {
            try
            {
                if (DdlMotivo3.SelectedValue == "0")
                {
                    new FuncionesDAO().FunShowJSMessage("Seleccione Motivo..!", this);
                    return;
                }

                if (string.IsNullOrEmpty(TxtObservacion3.Text.Trim()))
                {
                    new FuncionesDAO().FunShowJSMessage("Ingrese Observación..!", this);
                    return;
                }

                GridViewRow _gvrow = (GridViewRow)(sender as Control).Parent.Parent;
                _codigogete     = int.Parse(GrdvGestiones.DataKeys[_gvrow.RowIndex].Values["codigoGETE"].ToString());
                _identificacion = GrdvGestiones.DataKeys[_gvrow.RowIndex].Values["Identificacion"].ToString();
                _operacion      = GrdvGestiones.DataKeys[_gvrow.RowIndex].Values["Operacion"].ToString();
                _codigogestor   = int.Parse(GrdvGestiones.DataKeys[_gvrow.RowIndex].Values["codigoGESTOR"].ToString());
                _descripcion    = GrdvGestiones.DataKeys[_gvrow.RowIndex].Values["Descripcion"].ToString();
                new ConsultaDatosDAO().FunConsultaDatos(98, _codigogete, 0, 0, "", _telefono, "", Session["Conectar"].ToString());

                SoftCob_ACCIONGESTION _newaccion = new SoftCob_ACCIONGESTION();
                {
                    _newaccion.acci_tipoaccion       = "ELIMINAR GESTION";
                    _newaccion.acci_idmotivo         = int.Parse(DdlMotivo3.SelectedValue);
                    _newaccion.acci_observacion      = TxtObservacion3.Text.Trim().ToUpper();
                    _newaccion.acci_codigocpce       = int.Parse(ViewState["codigoCPCE"].ToString());
                    _newaccion.acci_identificacion   = _identificacion;
                    _newaccion.acci_operacion        = _operacion;
                    _newaccion.acci_gestoranterior   = _codigogestor;
                    _newaccion.acci_gestoractual     = 0;
                    _newaccion.acci_datoanterior     = _descripcion;
                    _newaccion.acci_auxv1            = "";
                    _newaccion.acci_auxv2            = "";
                    _newaccion.acci_auxv3            = "";
                    _newaccion.acci_auxi1            = int.Parse(ViewState["codigoPERS"].ToString());
                    _newaccion.acci_auxi2            = 0;
                    _newaccion.acci_auxi3            = 0;
                    _newaccion.acci_fechacreacion    = DateTime.Now;
                    _newaccion.acci_usuariocreacion  = int.Parse(Session["usuCodigo"].ToString());
                    _newaccion.acci_terminalcreacion = Session["MachineName"].ToString();
                }
                new CedenteDAO().FunInsertarAccionGestion(_newaccion);
                new FuncionesDAO().FunShowJSMessage("Gestión eliminado con éxito..!", this);

                _dts = new ConsultaDatosDAO().FunConsultaDatos(96, int.Parse(ViewState["codigoCLDE"].ToString()), 0, 0, "", "", "", Session["Conectar"].ToString());

                GrdvGestiones.DataSource = _dts;
                GrdvGestiones.DataBind();
                DdlMotivo3.SelectedValue = "0";
                TxtObservacion3.Text     = "";
            }
            catch (Exception ex)
            {
                Lblerror.Text = ex.ToString();
            }
        }
        private void FunCargarDatos()
        {
            _dts = new ConsultaDatosDAO().FunConsultaDatos(223, int.Parse(ViewState["CodigoCPCE"].ToString()),
                                                           int.Parse(ViewState["CodigoGEST"].ToString()), 0, "", ViewState["Operacion"].ToString(), "",
                                                           Session["Conectar"].ToString());

            GrdvGestiones.DataSource = _dts;
            GrdvGestiones.DataBind();
        }
        protected void FunCargarMatenimiento()
        {
            try
            {
                _dts = new ConsultaDatosDAO().FunConsultaDatos(32, int.Parse(ViewState["codigoPERS"].ToString()), 0, 0, "", "", "",
                                                               Session["Conectar"].ToString().ToString());

                ViewState["Identificacion"] = _dts.Tables[0].Rows[0]["Cedula"].ToString();
                GrdvDatosDeudor.DataSource  = _dts;
                GrdvDatosDeudor.DataBind();

                _dts = new ConsultaDatosDAO().FunConsultaDatos(58, int.Parse(ViewState["codigoCPCE"].ToString()), 0, 0, "", "", "",
                                                               Session["Conectar"].ToString().ToString());

                ViewState["Catalogo"] = _dts.Tables[0].Rows[0]["Descripcion"].ToString();

                _dts = new ConsultaDatosDAO().FunConsultaDatos(33, int.Parse(ViewState["codigoCEDE"].ToString()),
                                                               int.Parse(ViewState["codigoCPCE"].ToString()), int.Parse(ViewState["codigoCLDE"].ToString()),
                                                               ViewState["Catalogo"].ToString(), "", "", Session["Conectar"].ToString().ToString());

                GrdvDatosObligacion.DataSource = _dts;
                GrdvDatosObligacion.DataBind();

                _dts = new ConsultaDatosDAO().FunConsultaDatos(35, int.Parse(ViewState["codigoCEDE"].ToString()),
                                                               int.Parse(ViewState["codigoPERS"].ToString()), int.Parse(ViewState["codigoCLDE"].ToString()), "", "", "",
                                                               Session["Conectar"].ToString());

                GrdvTelefonos.DataSource = _dts;
                GrdvTelefonos.DataBind();

                _dts = new ConsultaDatosDAO().FunConsultaDatos(96, int.Parse(ViewState["codigoCLDE"].ToString()), 0, 0, "", "", "",
                                                               Session["Conectar"].ToString());
                GrdvGestiones.DataSource = _dts;
                GrdvGestiones.DataBind();
            }
            catch (Exception ex)
            {
                Lblerror.Text = ex.ToString();
            }
        }