Ejemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            GM_PlanCampania DatosAux = new GM_PlanCampania {
                Conexion = Comun.Conexion, IDUsuario = Comun.IDUsuario
            };
            GM_PlanCampaniaNegocio FN = new GM_PlanCampaniaNegocio();

            if (Request.QueryString["op"] != null && Request.QueryString["op"] == "3")
            {
                if (Request.QueryString["id"] != null)
                {
                    string AuxID = Request.QueryString["id"].ToString();
                    DatosAux.IDPElectoral = AuxID;
                    FN.EliminarIdCampania(DatosAux);
                    if (DatosAux.Completado)
                    {
                        string ScriptError = DialogMessage.Show(TipoMensaje.Success, "Registro eliminado correctamente.", "Información", ShowMethod.FadeIn, HideMethod.FadeOut, ToastPosition.TopFullWidth, true);
                        ScriptManager.RegisterStartupScript(this, typeof(Page), "popup", ScriptError, true);
                    }
                    else
                    {
                        string ScriptError = DialogMessage.Show(TipoMensaje.Error, "Error al eliminar el registro.", "Error", ShowMethod.FadeIn, HideMethod.FadeOut, ToastPosition.TopFullWidth, true);
                        ScriptManager.RegisterStartupScript(this, typeof(Page), "popup", ScriptError, true);
                    }
                }
            }
            ListaC = FN.ObtenerListCampania(DatosAux);
        }
Ejemplo n.º 2
0
 public void CargarProyectos()
 {
     try
     {
         GM_PlanCampania Datos = new GM_PlanCampania {
             Conexion = Comun.Conexion
         };
         GM_PlanCampaniaNegocio GN = new GM_PlanCampaniaNegocio();
         Lista = GN.ObtenerListCampania(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }