Example #1
0
 protected void DropDownListPROV_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (this.DropDownListPROV.SelectedIndex > 0)
     {
         DB_AP_Municipio mun = new DB_AP_Municipio();
         this.DropDownListMUN.Enabled = true;
         this.DropDownListMUN.Items.Clear();
         mun.DB_Desplegar_MUNICIPIOS_DROPDOWNLIST(Convert.ToInt32(this.DropDownListPROV.SelectedValue), DropDownListMUN);
     }
     else
     {
         this.DropDownListMUN.Enabled  = false;
         this.DropDownListCOM.Enabled  = false;
         this.DropDownListTipo.Enabled = false;
     }
 }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                string urrl = Request.QueryString["data"];
                TSHAK.Components.SecureQueryString querystringSeguro;
                querystringSeguro = new TSHAK.Components.SecureQueryString(new Byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 8 }, urrl);
                Int32 id_Org = Convert.ToInt32(querystringSeguro["id_Org"]);
                contEncabezado21.LabelIdInsOrg = (id_Org).ToString();
                this.HiddenFieldInsOrg.Value   = Convert.ToString(id_Org); //
                Int32 id_Campanhia = Convert.ToInt32(querystringSeguro["id_Campanhia"]);
                this.HiddenFieldCampanhia.Value = Convert.ToString(id_Campanhia);
                ///////////////////
                String          SIGLA     = "";
                String          PROGRAMA  = "";
                String          CAMPANHIA = "";
                DB_AP_Campanhia cam       = new DB_AP_Campanhia();
                cam.ExtraerCapanhiaID_INORG(id_Campanhia, id_Org, ref SIGLA, ref PROGRAMA, ref CAMPANHIA);
                contEncabezado21.LabelCamp = CAMPANHIA;
                contEncabezado21.LabelOrg  = SIGLA;
                contEncabezado21.LabelProg = PROGRAMA;
                ///
                DB_AP_Departamento dep = new DB_AP_Departamento();
                dep.DB_Desplegar_DEPARTAMENTOS(DDLDepartamento);

                //DB_AP_Inscripcion_Prod_Update dataup = new DB_AP_Inscripcion_Prod_Update();
                //String DEP = dataup.DB_Desplegar_REGIONAL_AP_INSCRIPCION_ORG(id_Org);


                //DropDownListMUN.Enabled = false;

                DB_AP_Provincia data = new DB_AP_Provincia();
                data.DB_Desplegar_PROVINCIAS_DROPDOWNLIST(DDLDepartamento.SelectedItem.Text, DropDownListPROV);
                DB_AP_Municipio data1 = new DB_AP_Municipio();
                data1.DB_Desplegar_MUNICIPIOS_DROPDOWNLIST(Convert.ToInt32(this.DropDownListPROV.SelectedValue), DropDownListMUN);
                DropDownListPROV.Enabled = false;
                DropDownListMUN.Enabled  = false;
                DropDownListCOM.Enabled  = false;
                DropDownListTipo.Enabled = false;
            }
        }
Example #3
0
        protected void asignaDatos(System.Data.DataTable tabledata, System.Data.DataTable mun_pro_com)
        {
            this.TextBoxCI.Text           = Convert.ToString(tabledata.Rows[0][1]);
            this.TextBoxNOM.Text          = Convert.ToString(tabledata.Rows[0][3]);
            this.TextBoxPAT.Text          = Convert.ToString(tabledata.Rows[0][4]);
            this.TextBoxMAT.Text          = Convert.ToString(tabledata.Rows[0][5]);
            this.TextF1TextBoxFE_NAC.Text = Convert.ToString(tabledata.Rows[0][6]);
            this.TextBoxTEL_FIJO.Text     = Convert.ToString(tabledata.Rows[0][8]);
            this.TextBoxTEL_MOVIL.Text    = Convert.ToString(tabledata.Rows[0][9]);
            this.TextBoxSUP.Text          = Convert.ToString(tabledata.Rows[0][19]);
            this.TextBoxRAU.Text          = Convert.ToString(tabledata.Rows[0][22]);
            if (Convert.ToBoolean(tabledata.Rows[0][7]) == true)
            {
                this.RadioButtonVaron.Checked = true;
            }
            else
            {
                this.RadioButtonMujer.Checked = true;
            }
            foreach (ListItem item in DropDownListEXT.Items)
            {
                if (item.Value == Convert.ToString(tabledata.Rows[0][2]))
                {
                    item.Selected = true;
                    break;
                }
            }
            //////
            DB_AP_Municipio mun = new DB_AP_Municipio();

            this.DropDownListMUN.Enabled = true;
            this.DropDownListMUN.Items.Clear();
            mun.DB_Desplegar_MUNICIPIOS_DROPDOWNLIST(Convert.ToInt32(mun_pro_com.Rows[0][4]), DropDownListMUN);
            //////////
            DB_AP_Comunidad com = new DB_AP_Comunidad();

            this.DropDownListCOM.Enabled = true;
            this.DropDownListCOM.Items.Clear();
            com.DB_Desplegar_COMUNIDAD_DROPDOWNLIST(Convert.ToInt32(mun_pro_com.Rows[0][2]), DropDownListCOM);
            //////asigna el valor provincia selecionada
            string dd = Convert.ToString(mun_pro_com.Rows[0][4]);

            foreach (ListItem itemP in DropDownListPROV.Items)
            {
                if (itemP.Value == Convert.ToString(mun_pro_com.Rows[0][4]))
                {
                    itemP.Selected = true;
                    break;
                }
            }
            //////asigna el valor municipio seleccionado
            foreach (ListItem item in DropDownListMUN.Items)
            {
                if (item.Value == Convert.ToString(mun_pro_com.Rows[0][2]))
                {
                    item.Selected = true;
                    break;
                }
            }
            //////asigna el valor municipio comunidad
            foreach (ListItem item in DropDownListCOM.Items)
            {
                if (item.Value == Convert.ToString(mun_pro_com.Rows[0][0]))
                {
                    item.Selected = true;
                    break;
                }
            }
            //////asigna el valor a tipo de beneficiario
            foreach (ListItem item in DropDownListTipo.Items)
            {
                if (item.Value == Convert.ToString(tabledata.Rows[0][17]))
                {
                    item.Selected = true;
                    break;
                }
            }
        }