protected void ddlDepartamento_SelectedIndexChanged(object sender, EventArgs e) { try { int idDeptoSel = Convert.ToInt32(ddlDepartamento.SelectedValue); if (idDeptoSel > 0) { dt = AdministrarPagadurias.mostrarCiudades(null, null, idDeptoSel); ddlCiudad.DataTextField = "ciu_Nombre"; // Cargamos lo que aparece en el ddl ddlCiudad.DataValueField = "ciu_Id"; // Cargamos lo que vale por debajo ddlCiudad.DataSource = dt; ddlCiudad.DataBind(); ddlCiudad.Items.Insert(0, new ListItem("Seleccione Municipio", "0")); } } catch (Exception ex) { //Response.Write(ex.ToString()); MensajeForm("Ha Ocurrido un Problema con su petición", null); } }
public void CargarDatosPagaduria(int?idPag) { try { dt = AdministrarPagadurias.ConsultarPagadurias(idPag, null, null); if (dt.Rows.Count > 0) { //lblMsj.Text = "<br><br> val IDPAG: " + idPag.ToString(); ddlDepartamento.ClearSelection(); ddlDepartamento.Items.FindByValue(dt.Rows[0]["dep_Id"].ToString()).Selected = true; dtTemp = AdministrarPagadurias.mostrarCiudades(null, null, Convert.ToInt32(dt.Rows[0]["dep_Id"].ToString())); //Response.Write("count: " + dtTemp.Rows.Count.ToString()); ddlEstadoPagaduria.ClearSelection(); ddlEstadoPagaduria.Items.FindByValue(dt.Rows[0]["paga_EstadoPagaduria"].ToString()).Selected = true; ddlCiudad.DataValueField = "ciu_id"; ddlCiudad.DataTextField = "ciu_Nombre"; ddlCiudad.DataSource = dtTemp; ddlCiudad.DataBind(); ddlCiudad.ClearSelection(); ddlCiudad.Items.FindByValue(dt.Rows[0]["ciu_Id"].ToString()).Selected = true; ddlActivEcon.ClearSelection(); ddlActivEcon.Items.FindByValue(dt.Rows[0]["act_id"].ToString()).Selected = true; txtIdentificacion.Text = dt.Rows[0]["paga_Identificacion"].ToString(); txtNombrePagaduria.Text = dt.Rows[0]["paga_Nombre"].ToString(); txtDireccion.Text = dt.Rows[0]["paga_Direccion"].ToString(); txtTelefono.Text = dt.Rows[0]["paga_Telefono"].ToString(); lblAccion.Text += ": " + dt.Rows[0]["paga_Nombre"].ToString() + " [ " + dt.Rows[0]["paga_Identificacion"].ToString() + " ]"; ddlVisacion.ClearSelection(); ddlVisacion.Items.FindByValue(dt.Rows[0]["paga_Visacion"].ToString()).Selected = true; txtNumEmpl.Text = dt.Rows[0]["paga_NumeroEmpleados"].ToString(); txtPorcPart.Text = dt.Rows[0]["paga_PorcentajeParticipacion"].ToString().Replace(",", "."); ddlFecEntregaNov.ClearSelection(); ddlFecEntregaNov.Items.FindByValue(dt.Rows[0]["paga_FechaEntregaNovedades"].ToString()).Selected = true; txtEmail.Text = dt.Rows[0]["paga_Correo"].ToString(); txtWeb.Text = dt.Rows[0]["paga_Web"].ToString(); txtNomRespPago.Text = dt.Rows[0]["paga_ResponsablePago"].ToString(); txtEmailRespPago.Text = dt.Rows[0]["paga_ResponsablePagoCorreo"].ToString(); txtTelRespPago.Text = dt.Rows[0]["paga_ResponsablePagoTelefono"].ToString(); txtCelRespPago.Text = dt.Rows[0]["paga_ResponsablePagoCelular"].ToString(); txtFecCumpleRespPago.Text = dt.Rows[0]["paga_ResponsablePagoFechaCumple"].ToString(); if (!String.IsNullOrEmpty(dt.Rows[0]["paga_ResponsablePagoFechaCumple"].ToString())) { DateTime fechaCumpleRespPago = Convert.ToDateTime(dt.Rows[0]["paga_ResponsablePagoFechaCumple"].ToString()); txtFecCumpleRespPago.Text = fechaCumpleRespPago.ToString("yyyy-MM-dd"); } txtContacto.Text = dt.Rows[0]["paga_Contacto"].ToString(); txtEmailContacto.Text = dt.Rows[0]["paga_ContactoCorreo"].ToString(); txtTelContacto.Text = dt.Rows[0]["paga_ContactoTelefono"].ToString(); txtCelContacto.Text = dt.Rows[0]["paga_ContactoCelular"].ToString(); txtFecCumpleContacto.Text = dt.Rows[0]["paga_ContactoFechaCumple"].ToString(); if (!String.IsNullOrEmpty(dt.Rows[0]["paga_ContactoFechaCumple"].ToString())) { DateTime fechaCumpleContacto = Convert.ToDateTime(dt.Rows[0]["paga_ContactoFechaCumple"].ToString()); txtFecCumpleContacto.Text = fechaCumpleContacto.ToString("yyyy-MM-dd"); } txtRespLegal.Text = dt.Rows[0]["paga_ResponsableLegal"].ToString(); txtEmailRespLegal.Text = dt.Rows[0]["paga_ResponsableLegalCorreo"].ToString(); txtTelRespLeg.Text = dt.Rows[0]["paga_ResponsableLegalTelefono"].ToString(); txtCelRespLegal.Text = dt.Rows[0]["paga_ResponsableLegalCelular"].ToString(); txtFecCumpleRespLegal.Text = dt.Rows[0]["paga_ResponsableLegalFechaCumple"].ToString(); if (!String.IsNullOrEmpty(dt.Rows[0]["paga_ResponsableLegalFechaCumple"].ToString())) { DateTime fechaCumpleRespLegal = Convert.ToDateTime(dt.Rows[0]["paga_ResponsableLegalFechaCumple"].ToString()); txtFecCumpleRespLegal.Text = fechaCumpleRespLegal.ToString("yyyy-MM-dd"); } pnlArchivosSoportePagaduria.Visible = true; CargarArchivosSoportePagaduria(null, null, idPag); pnlLocalidadesPagaduria.Visible = true; CargarLocalidadesPorPagaduria(null, idPag); pnlConvenios.Visible = true; CargarConvenios(null, null, null, idPag); pnlArchivosNovedades.Visible = true; CargarArchivosNovedades(null, idPag, null, null, null); } } catch (Exception ex) { //Response.Write(ex.ToString()); MensajeForm("Ha Ocurrido un Problema con su petición", null); } }